btxui 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -0
- package/app.vue +162 -0
- package/assets/css/_main.js +73 -0
- package/assets/css/btx.min.css +1 -0
- package/assets/css/btx.mob.min.css +1 -0
- package/assets/css/btx.pad.min.css +1 -0
- package/assets/css/btx.webapp.min.css +1 -0
- package/assets/css/custom_fonts/iconfont.css +37 -0
- package/assets/css/custom_fonts/iconfont.eot +0 -0
- package/assets/css/custom_fonts/iconfont.svg +47 -0
- package/assets/css/custom_fonts/iconfont.ttf +0 -0
- package/assets/css/custom_fonts/iconfont.woff +0 -0
- package/assets/css/custom_fonts/iconfont.woff2 +0 -0
- package/assets/css/res-l.css +47 -0
- package/assets/css/res-m.css +47 -0
- package/assets/css/res-s.css +61 -0
- package/assets/custom_fonts/iconfont.css +37 -0
- package/assets/custom_fonts/iconfont.eot +0 -0
- package/assets/custom_fonts/iconfont.svg +47 -0
- package/assets/custom_fonts/iconfont.ttf +0 -0
- package/assets/custom_fonts/iconfont.woff +0 -0
- package/assets/custom_fonts/iconfont.woff2 +0 -0
- package/assets/js/Btx.js +196 -0
- package/assets/js/Utils.js +421 -0
- package/assets/js/fastclick.js +802 -0
- package/assets/js/lazy.min.js +2 -0
- package/assets/js/touchwipe.js +111 -0
- package/assets/server.js +8 -0
- package/assets/start_site_code_str.js +119 -0
- package/cdn/css/btx.min.css +1 -0
- package/cdn/css/btx.min.css.map +1 -0
- package/cdn/fonts/iconfont.ttf +0 -0
- package/cdn/fonts/iconfont.woff +0 -0
- package/cdn/fonts/iconfont.woff2 +0 -0
- package/components/BTXUI/app/app-wid.vue +182 -0
- package/components/BTXUI/btn/btn-wid.vue +128 -0
- package/components/BTXUI/carousel/carousel-wid.vue +138 -0
- package/components/BTXUI/checkbox/checkbox-wid.vue +72 -0
- package/components/BTXUI/confirm/confirm-wid.vue +279 -0
- package/components/BTXUI/content/content-checkbox-wid.vue +44 -0
- package/components/BTXUI/content/content-node-wid.vue +114 -0
- package/components/BTXUI/content/content-tag-wid.vue +25 -0
- package/components/BTXUI/content/content-wid.vue +254 -0
- package/components/BTXUI/core/anis/ani-fail.vue +46 -0
- package/components/BTXUI/core/anis/ani-loading.vue +32 -0
- package/components/BTXUI/core/anis/ani-notic.vue +47 -0
- package/components/BTXUI/core/anis/ani-success.vue +48 -0
- package/components/BTXUI/core/b-drag.vue +258 -0
- package/components/BTXUI/core/b-grid.vue +84 -0
- package/components/BTXUI/core/b-hot.vue +171 -0
- package/components/BTXUI/core/b-icon.vue +76 -0
- package/components/BTXUI/core/b-img.vue +84 -0
- package/components/BTXUI/core/b-input.vue +198 -0
- package/components/BTXUI/core/b-list.vue +276 -0
- package/components/BTXUI/core/b-text/doc.ts +9 -0
- package/components/BTXUI/core/b-text/index.vue +16 -0
- package/components/BTXUI/core/b-textarea.vue +58 -0
- package/components/BTXUI/core/b-video.vue +35 -0
- package/components/BTXUI/core/b-view/doc.ts +10 -0
- package/components/BTXUI/core/b-view/index.vue +20 -0
- package/components/BTXUI/core/b-webview.vue +20 -0
- package/components/BTXUI/core/lib/ChapterLink.js +49 -0
- package/components/BTXUI/core/lib/Search.vue +60 -0
- package/components/BTXUI/core/styles/doc.ts +55 -0
- package/components/BTXUI/core/styles/index.vue +98 -0
- package/components/BTXUI/core/styles/prestyles.ts +471 -0
- package/components/BTXUI/core/styles/theme.ts +29 -0
- package/components/BTXUI/drawer/drawer-wid.vue +165 -0
- package/components/BTXUI/drawer/title-tag-wid.vue +114 -0
- package/components/BTXUI/form/form-select-wid.vue +57 -0
- package/components/BTXUI/form/form-wid.vue +324 -0
- package/components/BTXUI/formPannel/form-pannel-wid.vue +133 -0
- package/components/BTXUI/imgsUpload/imgs-upload-wid.vue +149 -0
- package/components/BTXUI/index.js +83 -0
- package/components/BTXUI/pageFlip/page-flip-wid.vue +206 -0
- package/components/BTXUI/pannel/pannel-wid.vue +167 -0
- package/components/BTXUI/range/range-wid.vue +134 -0
- package/components/BTXUI/search/search-wid.vue +80 -0
- package/components/BTXUI/select/select-wid.vue +186 -0
- package/components/BTXUI/slider/slider-wid.vue +444 -0
- package/components/BTXUI/tab/tab-wid.vue +109 -0
- package/components/BTXUI/table/table-wid.vue +324 -0
- package/components/BTXUI/tag/tag-wid.vue +183 -0
- package/components/BTXUI/tags/tags-wid.vue +121 -0
- package/components/BTXUI/tooltip/tooltip-wid.vue +146 -0
- package/components/BTXUI/upload/upload-wid.vue +215 -0
- package/components/BTXUI/waterfall/waterfall-wid.vue +166 -0
- package/components/header-info.vue +167 -0
- package/composables/@types.ts +4 -0
- package/composables/api.ts +18 -0
- package/env.d.ts +5 -0
- package/main.js +6 -0
- package/nuxt.config.ts +51 -0
- package/package.json +23 -0
- package/pages/article.vue +16 -0
- package/pages/download.vue +50 -0
- package/pages/example/app_wid/app/data_demo.vue +9 -0
- package/pages/example/app_wid/app/download_demo.vue +9 -0
- package/pages/example/app_wid/app/list_demo.vue +11 -0
- package/pages/example/app_wid/app/system_demo.vue +9 -0
- package/pages/example/app_wid/app_wid_demo.vue +198 -0
- package/pages/example/app_wid/btn_wid_demo.vue +179 -0
- package/pages/example/app_wid/carousel_wid_demo.vue +152 -0
- package/pages/example/app_wid/checkbox_wid_demo.vue +65 -0
- package/pages/example/app_wid/confirm_wid_demo.vue +197 -0
- package/pages/example/app_wid/content_wid_demo.vue +369 -0
- package/pages/example/app_wid/drawer_wid_demo.vue +155 -0
- package/pages/example/app_wid/form_pannel_wid_demo.vue +338 -0
- package/pages/example/app_wid/form_wid_demo.vue +550 -0
- package/pages/example/app_wid/imgs_upload_wid_demo.vue +159 -0
- package/pages/example/app_wid/index.js +158 -0
- package/pages/example/app_wid/page_flip_wid_demo.vue +99 -0
- package/pages/example/app_wid/pannel_wid_demo.vue +177 -0
- package/pages/example/app_wid/range_wid_demo.vue +101 -0
- package/pages/example/app_wid/search_wid_demo.vue +75 -0
- package/pages/example/app_wid/select_wid_demo.vue +217 -0
- package/pages/example/app_wid/slider_wid_demo.vue +143 -0
- package/pages/example/app_wid/tab_wid_demo.vue +170 -0
- package/pages/example/app_wid/table_wid_demo.vue +377 -0
- package/pages/example/app_wid/tag_wid_demo.vue +133 -0
- package/pages/example/app_wid/tags_wid_demo.vue +143 -0
- package/pages/example/app_wid/tooltip_wid_demo.vue +117 -0
- package/pages/example/app_wid/upload_wid_demo.vue +123 -0
- package/pages/example/base_wid/b_drag_demo.vue +159 -0
- package/pages/example/base_wid/b_grid_demo.vue +225 -0
- package/pages/example/base_wid/b_hot_demo.vue +135 -0
- package/pages/example/base_wid/b_icon_demo.vue +80 -0
- package/pages/example/base_wid/b_img_demo.vue +95 -0
- package/pages/example/base_wid/b_input_demo.vue +171 -0
- package/pages/example/base_wid/b_list_demo.vue +241 -0
- package/pages/example/base_wid/b_style_demo.vue +928 -0
- package/pages/example/base_wid/b_text_demo.vue +36 -0
- package/pages/example/base_wid/b_textarea_demo.vue +64 -0
- package/pages/example/base_wid/b_video_demo.vue +42 -0
- package/pages/example/base_wid/b_view_demo.vue +36 -0
- package/pages/example/base_wid/index.js +76 -0
- package/pages/example/content.js +49 -0
- package/pages/example/global_style/animation.vue +197 -0
- package/pages/example/global_style/color.vue +134 -0
- package/pages/example/global_style/decoration.vue +546 -0
- package/pages/example/global_style/icon.vue +345 -0
- package/pages/example/global_style/index.js +52 -0
- package/pages/example/global_style/layout.vue +846 -0
- package/pages/example/global_style/special.vue +37 -0
- package/pages/example/global_style/table.vue +298 -0
- package/pages/example/global_style/text.vue +159 -0
- package/pages/index.vue +29 -0
- package/pages/level_widget.vue +11 -0
- package/pages/start.vue +200 -0
- package/plugins/index.ts +2 -0
- package/public/favicon.gif +0 -0
- package/public/fonts/iconfont.ttf +0 -0
- package/public/fonts/iconfont.woff +0 -0
- package/public/fonts/iconfont.woff2 +0 -0
- package/public/img/banner.jpg +0 -0
- package/public/img/banner2.jpg +0 -0
- package/public/img/bg_pattern.png +0 -0
- package/public/img/btx.jpg +0 -0
- package/public/img/btx_ui.jpg +0 -0
- package/public/img/dir.png +0 -0
- package/public/img/f.png +0 -0
- package/public/img/head.jpg +0 -0
- package/public/img/head2.jpg +0 -0
- package/public/img/home_ico.png +0 -0
- package/public/img/icons.svg +164 -0
- package/public/img/mechanism/b-style.png +0 -0
- package/public/img/mechanism/slider-wid.png +0 -0
- package/public/img/mechanism/upload-wid.png +0 -0
- package/public/img/transform_origin.png +0 -0
- package/sass/animation.scss +400 -0
- package/sass/btx.mob.scss +10 -0
- package/sass/btx.pad.scss +3 -0
- package/sass/btx.scss +22 -0
- package/sass/btx.webapp.scss +22 -0
- package/sass/colors.scss +65 -0
- package/sass/decoration.scss +220 -0
- package/sass/flex.scss +29 -0
- package/sass/icons.scss +100 -0
- package/sass/layout.scss +88 -0
- package/sass/reset.scss +111 -0
- package/sass/response/flex_mixin.scss +91 -0
- package/sass/response/layout_mixin.scss +227 -0
- package/sass/response/main.scss +59 -0
- package/sass/response/text_mixin.scss +65 -0
- package/sass/scroll.scss +100 -0
- package/sass/special.scss +13 -0
- package/sass/table.scss +103 -0
- package/sass/text.scss +86 -0
- package/sass/webpack.config.js +31 -0
- package/tsconfig.json +4 -0
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<article>
|
|
3
|
+
<p>BTX·UI 精选了一套常用的字体图标集合。其类名都是以 <code>.ico-*</code> 作为前缀的,比如删除图标:<code>.ico-del</code>。</p>
|
|
4
|
+
<p>在实际项目中为了灵活控制字体图标大小,推荐使用 <code><i></code> 标签进行样式类绑定,可配合字号样式类 <code>.fsize-*</code> 及放缩微调类 <code>.scale-*</code> 协同使用。</p>
|
|
5
|
+
<p></p>
|
|
6
|
+
|
|
7
|
+
<!-- 图标 -->
|
|
8
|
+
<h5>图标汇总</h5>
|
|
9
|
+
<div class="pcenter fsize-d8">
|
|
10
|
+
<div class="grid">
|
|
11
|
+
<div class="col-2 pad-d5 mrg-b-2 mrg-b-0-s col-4-s" v-for="(ico, i) of icons" :key="i">
|
|
12
|
+
<div class="w-10 h-10 round-sm line-lgray line thick-1 pad-t-1 max-w-s h-auto-s pad-b-1-s">
|
|
13
|
+
<i :class="`ico-${ico.name} scale-${ico.scale || 1}`" class="fsize-2d5 dark"></i><br>
|
|
14
|
+
<span>{{ico.name}}</span><br>
|
|
15
|
+
<span class="fsize-d8 color-mgray">{{ico.code}}</span>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
</article>
|
|
22
|
+
</template>
|
|
23
|
+
|
|
24
|
+
<script>
|
|
25
|
+
export default {
|
|
26
|
+
name: "icon",
|
|
27
|
+
data(){
|
|
28
|
+
return {
|
|
29
|
+
|
|
30
|
+
//图标集合
|
|
31
|
+
icons: [
|
|
32
|
+
{
|
|
33
|
+
name: "success",
|
|
34
|
+
code: "\e620"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "fail",
|
|
38
|
+
code: "\e60c"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: "xiala",
|
|
42
|
+
code: "\e6b9"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
name: "arrow-right",
|
|
46
|
+
code: "\e607"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
name: "arrow-left",
|
|
50
|
+
code: "\e608"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: "sousuo",
|
|
54
|
+
code: "\e66e"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
name: "play",
|
|
58
|
+
code: "\e6a4"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: "pause",
|
|
62
|
+
code: "\e6a5"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
name: "close",
|
|
66
|
+
code: "\e663"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: "add",
|
|
70
|
+
code: "\e664"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "more",
|
|
74
|
+
code: "\e654"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
name: "link",
|
|
78
|
+
code: "\e66d",
|
|
79
|
+
scale: "d8"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: "save",
|
|
83
|
+
code: "\e602",
|
|
84
|
+
scale: "d8"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
name: "del",
|
|
88
|
+
code: "\e612",
|
|
89
|
+
scale: "d8"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
name: "mobile",
|
|
93
|
+
code: "\e712"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
name: "weibo",
|
|
97
|
+
code: "\e609"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
name: "wechat",
|
|
101
|
+
code: "\e62d"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
name: "dy",
|
|
105
|
+
code: "\e615"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: "bili",
|
|
109
|
+
code: "\e617"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: "github",
|
|
113
|
+
code: "\e761",
|
|
114
|
+
scale: "d9"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
name: "download",
|
|
118
|
+
code: "\e600",
|
|
119
|
+
scale: "d9"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
name: "ui",
|
|
123
|
+
code: "\e63c",
|
|
124
|
+
scale: "d9"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
name: "home",
|
|
128
|
+
code: "\e68e",
|
|
129
|
+
scale: "d8"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
name: "list",
|
|
133
|
+
code: "\e665",
|
|
134
|
+
scale: "d9"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: "no-data",
|
|
138
|
+
code: "\e62c",
|
|
139
|
+
scale: "d9"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: "brightness",
|
|
143
|
+
code: "\e632",
|
|
144
|
+
scale: "d9"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
name: "data",
|
|
148
|
+
code: "\e690"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
name: "user",
|
|
152
|
+
code: "\e62b",
|
|
153
|
+
scale: "d9"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
name: "system",
|
|
157
|
+
code: "\e611",
|
|
158
|
+
scale: "d9"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
name: "order",
|
|
162
|
+
code: "\e684"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
name: "exit",
|
|
166
|
+
code: "\e618",
|
|
167
|
+
scale: "d8"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: "log",
|
|
171
|
+
code: "\e60f",
|
|
172
|
+
scale: "d9"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
name: "edit",
|
|
176
|
+
code: "\e70c"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
name: "btxstudio-zh",
|
|
180
|
+
code: "\e606",
|
|
181
|
+
scale: "1d4"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
name: "company-pad",
|
|
185
|
+
code: "\e603",
|
|
186
|
+
scale: "d8"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
name: "company-line",
|
|
190
|
+
code: "\e604",
|
|
191
|
+
scale: "d8"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
name: "company-zh",
|
|
195
|
+
code: "\e605",
|
|
196
|
+
scale: "1d7"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
name: "level",
|
|
200
|
+
code: "\e60a",
|
|
201
|
+
scale: "1d2"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
name: "level_round",
|
|
205
|
+
code: "\e60e"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
name: "btxstudio",
|
|
209
|
+
code: "\e60b",
|
|
210
|
+
scale: "1d2"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
name: "btxstudio-round",
|
|
214
|
+
code: "\e60d"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: "qq",
|
|
218
|
+
code: "\e63f"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
name: "weibo2",
|
|
222
|
+
code: "\e64c"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
name: "email",
|
|
226
|
+
code: "\e619",
|
|
227
|
+
scale: "1d1"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
name: "tel",
|
|
231
|
+
code: "\e768"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
name: "fix",
|
|
235
|
+
code: "\e614"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
name: "website",
|
|
239
|
+
code: "\e63d",
|
|
240
|
+
scale: "1d1"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
name: "wechat2",
|
|
244
|
+
code: "\e62a",
|
|
245
|
+
scale: "1d1"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
name: "eye",
|
|
249
|
+
code: "\e7d3"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: "brand",
|
|
253
|
+
code: "\e610"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
name: "chart",
|
|
257
|
+
code: "\e6cc"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
name: "addr",
|
|
261
|
+
code: "\e613"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
name: "space",
|
|
265
|
+
code: "\e89f"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
name: "directory",
|
|
269
|
+
code: "\e666"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
name: "mail-list",
|
|
273
|
+
code: "\e645"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: "book",
|
|
277
|
+
code: "\e68b"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
name: "tesk",
|
|
281
|
+
code: "\e601"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
name: "talk",
|
|
285
|
+
code: "\e81a"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
name: "trophy",
|
|
289
|
+
code: "\e723"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
name: "edit",
|
|
293
|
+
code: "\eed2"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
name: "work",
|
|
297
|
+
code: "\eee0"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
name: "circle",
|
|
301
|
+
code: "\e633",
|
|
302
|
+
scale: "1d1"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
name: "shop",
|
|
306
|
+
code: "\e699",
|
|
307
|
+
scale: "1d1"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
name: "group",
|
|
311
|
+
code: "\e68f"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
name: "about",
|
|
315
|
+
code: "\e674"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
name: "pwd",
|
|
319
|
+
code: "\e616"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
name: "book-block-list",
|
|
323
|
+
code: "\e688",
|
|
324
|
+
scale: "d8"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
name: "book-list",
|
|
328
|
+
code: "\e689",
|
|
329
|
+
scale: "d8"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
name: "check-code",
|
|
333
|
+
code: "\e626"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
name: "time",
|
|
337
|
+
code: "\e61a",
|
|
338
|
+
scale: "d9"
|
|
339
|
+
},
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
};
|
|
345
|
+
</script>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
//全局样式
|
|
2
|
+
import layout from './layout' //布局
|
|
3
|
+
import table from './table' //表格
|
|
4
|
+
import color from './color' //色彩
|
|
5
|
+
import text from './text' //文本
|
|
6
|
+
import decoration from './decoration' //装饰
|
|
7
|
+
import icon from './icon' //图标
|
|
8
|
+
import special from './special' //特殊
|
|
9
|
+
import animation from './animation' //动画
|
|
10
|
+
|
|
11
|
+
export default [
|
|
12
|
+
{
|
|
13
|
+
path: '/text',
|
|
14
|
+
component: text,
|
|
15
|
+
text: "文本"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
path: '/layout',
|
|
19
|
+
component: layout,
|
|
20
|
+
text: "布局"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
path: '/table',
|
|
24
|
+
component: table,
|
|
25
|
+
text: "表格"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
path: '/decoration',
|
|
29
|
+
component: decoration,
|
|
30
|
+
text: "装饰"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
path: '/icon',
|
|
34
|
+
component: icon,
|
|
35
|
+
text: "图标"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
path: '/color',
|
|
39
|
+
component: color,
|
|
40
|
+
text: "色彩"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
path: '/special',
|
|
44
|
+
component: special,
|
|
45
|
+
text: "特殊"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
path: '/animation',
|
|
49
|
+
component: animation,
|
|
50
|
+
text: "动画"
|
|
51
|
+
}
|
|
52
|
+
];
|