-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.mpx
More file actions
72 lines (65 loc) · 1.96 KB
/
app.mpx
File metadata and controls
72 lines (65 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<script lang="ts" src="./app.ts"></script>
<style lang="stylus">
.page
height 100%
::-webkit-scrollbar {
width: 0;
background: transparent;
}
</style>
<script type="application/json">
{
"pages": [
"./pages/index",
"./pages/button/index",
"./pages/collapse/index",
"./pages/icon/index",
"./pages/button-group/index",
"./pages/divider/index",
"./pages/toast/index",
"./pages/popup/index",
"./pages/modal/index",
"./pages/dialog/index",
"./pages/tip/index",
"./pages/picker/index",
"./pages/picker-popup/index",
"./pages/picker-modal/index",
"./pages/cascade-picker/index",
"./pages/cascade-picker-popup/index",
"./pages/cascade-picker-modal/index",
"./pages/date-picker/index",
"./pages/date-picker-popup/index",
"./pages/date-picker-modal/index",
"./pages/time-picker/index",
"./pages/time-picker-popup/index",
"./pages/time-picker-modal/index",
"./pages/segment-picker/index",
"./pages/radio/index",
"./pages/radio-group/index",
"./pages/radio-modal/index",
"./pages/checkbox/index",
"./pages/checkbox-group/index",
"./pages/checkbox-modal/index",
"./pages/textarea/index",
"./pages/float-ball/index",
"./pages/rate/index",
"./pages/switch/index",
"./pages/loading/index",
"./pages/calendar-modal/index",
"./pages/calendar/index"
]
}
</script>
<!-- "renderer": "skyline",
"lazyCodeLoading": "requiredComponents",
"rendererOptions": { "skyline": { "defaultDisplayBlock": true } },
"componentFramework": "glass-easel" -->
<!--也可以通过以下形式用js输出json,便于书写注释和使用条件编译-->
<!--<script name="json">-->
<!-- // 可以写注释,通过defs注入的常量做一些判断之类的操作-->
<!-- module.exports = {-->
<!-- pages: [-->
<!-- './pages/index'-->
<!-- ]-->
<!-- }-->
<!--</script>-->