vuv-ui 1.0.0 → 1.0.2
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 +1 -42
- package/package.json +4 -4
- package/vuv-ui/src/components/button/Data.vue.d.ts +50 -2
- package/vuv-ui/src/components/button/index.d.ts +52 -2
- package/vuv-ui/src/components/collapse/index.d.ts +2 -0
- package/vuv-ui/src/components/index.d.ts +154 -6
- package/vuv-ui/src/components/numberBxo/index.d.ts +2 -0
- package/vuv-ui/src/components/textarea/index.d.ts +2 -0
- package/vuv-ui/vuv-ui.css +1 -1
- package/vuv-ui/vuv-ui.es.js +936 -912
- package/vuv-ui/vuv-ui.umd.js +1 -1
package/README.md
CHANGED
|
@@ -1,42 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
This template should help get you started developing with Vue 3 in Vite.
|
|
4
|
-
|
|
5
|
-
## Recommended IDE Setup
|
|
6
|
-
|
|
7
|
-
[VS Code](https://code.visualstudio.com/) + [Vue (Official)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
|
8
|
-
|
|
9
|
-
## Recommended Browser Setup
|
|
10
|
-
|
|
11
|
-
- Chromium-based browsers (Chrome, Edge, Brave, etc.):
|
|
12
|
-
- [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd)
|
|
13
|
-
- [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters)
|
|
14
|
-
- Firefox:
|
|
15
|
-
- [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/)
|
|
16
|
-
- [Turn on Custom Object Formatter in Firefox DevTools](https://fxdx.dev/firefox-devtools-custom-object-formatters/)
|
|
17
|
-
|
|
18
|
-
## Type Support for `.vue` Imports in TS
|
|
19
|
-
|
|
20
|
-
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
|
|
21
|
-
|
|
22
|
-
## Customize configuration
|
|
23
|
-
|
|
24
|
-
See [Vite Configuration Reference](https://vite.dev/config/).
|
|
25
|
-
|
|
26
|
-
## Project Setup
|
|
27
|
-
|
|
28
|
-
```sh
|
|
29
|
-
npm install
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
### Compile and Hot-Reload for Development
|
|
33
|
-
|
|
34
|
-
```sh
|
|
35
|
-
npm run dev
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
### Type-Check, Compile and Minify for Production
|
|
39
|
-
|
|
40
|
-
```sh
|
|
41
|
-
npm run build
|
|
42
|
-
```
|
|
1
|
+
基于第三方组件库 uv-ui 开发的 Vue 3 组件
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuv-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"description": "基于UVUI 组件再次封装",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"author": "lsq",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"./style.css": "./vuv-ui/style.css"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"vue": "
|
|
30
|
-
"element-plus": "
|
|
31
|
-
"uv-ui": "
|
|
29
|
+
"vue": ">=3.2.0",
|
|
30
|
+
"element-plus": ">=2.2.0",
|
|
31
|
+
"uv-ui": ">=1.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@tsconfig/node24": "^24.0.4",
|
|
@@ -1,12 +1,60 @@
|
|
|
1
1
|
declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
2
|
data: {
|
|
3
3
|
type: ObjectConstructor;
|
|
4
|
-
default:
|
|
4
|
+
default: {
|
|
5
|
+
data: {};
|
|
6
|
+
options: {
|
|
7
|
+
width: string;
|
|
8
|
+
height: string;
|
|
9
|
+
hairline: boolean;
|
|
10
|
+
type: string;
|
|
11
|
+
size: string;
|
|
12
|
+
shape: string;
|
|
13
|
+
position: string;
|
|
14
|
+
plain: boolean;
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
loading: boolean;
|
|
17
|
+
loadingText: string;
|
|
18
|
+
openType: string;
|
|
19
|
+
pagePath: string;
|
|
20
|
+
isTabBar: boolean;
|
|
21
|
+
text: string;
|
|
22
|
+
textColor: string;
|
|
23
|
+
icon: string;
|
|
24
|
+
color: string;
|
|
25
|
+
customStyle: string;
|
|
26
|
+
fill: boolean;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
5
29
|
};
|
|
6
30
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
31
|
data: {
|
|
8
32
|
type: ObjectConstructor;
|
|
9
|
-
default:
|
|
33
|
+
default: {
|
|
34
|
+
data: {};
|
|
35
|
+
options: {
|
|
36
|
+
width: string;
|
|
37
|
+
height: string;
|
|
38
|
+
hairline: boolean;
|
|
39
|
+
type: string;
|
|
40
|
+
size: string;
|
|
41
|
+
shape: string;
|
|
42
|
+
position: string;
|
|
43
|
+
plain: boolean;
|
|
44
|
+
disabled: boolean;
|
|
45
|
+
loading: boolean;
|
|
46
|
+
loadingText: string;
|
|
47
|
+
openType: string;
|
|
48
|
+
pagePath: string;
|
|
49
|
+
isTabBar: boolean;
|
|
50
|
+
text: string;
|
|
51
|
+
textColor: string;
|
|
52
|
+
icon: string;
|
|
53
|
+
color: string;
|
|
54
|
+
customStyle: string;
|
|
55
|
+
fill: boolean;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
10
58
|
};
|
|
11
59
|
}>> & Readonly<{}>, {
|
|
12
60
|
data: Record<string, any>;
|
|
@@ -66,12 +66,60 @@ declare const buttonTypeList: {
|
|
|
66
66
|
editCom: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
67
67
|
data: {
|
|
68
68
|
type: ObjectConstructor;
|
|
69
|
-
default:
|
|
69
|
+
default: {
|
|
70
|
+
data: {};
|
|
71
|
+
options: {
|
|
72
|
+
width: string;
|
|
73
|
+
height: string;
|
|
74
|
+
hairline: boolean;
|
|
75
|
+
type: string;
|
|
76
|
+
size: string;
|
|
77
|
+
shape: string;
|
|
78
|
+
position: string;
|
|
79
|
+
plain: boolean;
|
|
80
|
+
disabled: boolean;
|
|
81
|
+
loading: boolean;
|
|
82
|
+
loadingText: string;
|
|
83
|
+
openType: string;
|
|
84
|
+
pagePath: string;
|
|
85
|
+
isTabBar: boolean;
|
|
86
|
+
text: string;
|
|
87
|
+
textColor: string;
|
|
88
|
+
icon: string;
|
|
89
|
+
color: string;
|
|
90
|
+
customStyle: string;
|
|
91
|
+
fill: boolean;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
70
94
|
};
|
|
71
95
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
72
96
|
data: {
|
|
73
97
|
type: ObjectConstructor;
|
|
74
|
-
default:
|
|
98
|
+
default: {
|
|
99
|
+
data: {};
|
|
100
|
+
options: {
|
|
101
|
+
width: string;
|
|
102
|
+
height: string;
|
|
103
|
+
hairline: boolean;
|
|
104
|
+
type: string;
|
|
105
|
+
size: string;
|
|
106
|
+
shape: string;
|
|
107
|
+
position: string;
|
|
108
|
+
plain: boolean;
|
|
109
|
+
disabled: boolean;
|
|
110
|
+
loading: boolean;
|
|
111
|
+
loadingText: string;
|
|
112
|
+
openType: string;
|
|
113
|
+
pagePath: string;
|
|
114
|
+
isTabBar: boolean;
|
|
115
|
+
text: string;
|
|
116
|
+
textColor: string;
|
|
117
|
+
icon: string;
|
|
118
|
+
color: string;
|
|
119
|
+
customStyle: string;
|
|
120
|
+
fill: boolean;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
75
123
|
};
|
|
76
124
|
}>> & Readonly<{}>, {
|
|
77
125
|
data: Record<string, any>;
|
|
@@ -104,3 +152,5 @@ declare const buttonOptions: {
|
|
|
104
152
|
};
|
|
105
153
|
};
|
|
106
154
|
export { buttonTypeList, buttonOptions };
|
|
155
|
+
export { default as ButtonView } from './View.vue';
|
|
156
|
+
export { default as ButtonData } from './Data.vue';
|
|
@@ -67,12 +67,60 @@ export declare const uvUiList: import('vue').Ref<{
|
|
|
67
67
|
editCom: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
68
68
|
data: {
|
|
69
69
|
type: ObjectConstructor;
|
|
70
|
-
default:
|
|
70
|
+
default: {
|
|
71
|
+
data: {};
|
|
72
|
+
options: {
|
|
73
|
+
width: string;
|
|
74
|
+
height: string;
|
|
75
|
+
hairline: boolean;
|
|
76
|
+
type: string;
|
|
77
|
+
size: string;
|
|
78
|
+
shape: string;
|
|
79
|
+
position: string;
|
|
80
|
+
plain: boolean;
|
|
81
|
+
disabled: boolean;
|
|
82
|
+
loading: boolean;
|
|
83
|
+
loadingText: string;
|
|
84
|
+
openType: string;
|
|
85
|
+
pagePath: string;
|
|
86
|
+
isTabBar: boolean;
|
|
87
|
+
text: string;
|
|
88
|
+
textColor: string;
|
|
89
|
+
icon: string;
|
|
90
|
+
color: string;
|
|
91
|
+
customStyle: string;
|
|
92
|
+
fill: boolean;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
71
95
|
};
|
|
72
96
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
73
97
|
data: {
|
|
74
98
|
type: ObjectConstructor;
|
|
75
|
-
default:
|
|
99
|
+
default: {
|
|
100
|
+
data: {};
|
|
101
|
+
options: {
|
|
102
|
+
width: string;
|
|
103
|
+
height: string;
|
|
104
|
+
hairline: boolean;
|
|
105
|
+
type: string;
|
|
106
|
+
size: string;
|
|
107
|
+
shape: string;
|
|
108
|
+
position: string;
|
|
109
|
+
plain: boolean;
|
|
110
|
+
disabled: boolean;
|
|
111
|
+
loading: boolean;
|
|
112
|
+
loadingText: string;
|
|
113
|
+
openType: string;
|
|
114
|
+
pagePath: string;
|
|
115
|
+
isTabBar: boolean;
|
|
116
|
+
text: string;
|
|
117
|
+
textColor: string;
|
|
118
|
+
icon: string;
|
|
119
|
+
color: string;
|
|
120
|
+
customStyle: string;
|
|
121
|
+
fill: boolean;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
76
124
|
};
|
|
77
125
|
}>> & Readonly<{}>, {
|
|
78
126
|
data: Record<string, any>;
|
|
@@ -250,12 +298,60 @@ export declare const uvUiList: import('vue').Ref<{
|
|
|
250
298
|
editCom: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
251
299
|
data: {
|
|
252
300
|
type: ObjectConstructor;
|
|
253
|
-
default:
|
|
301
|
+
default: {
|
|
302
|
+
data: {};
|
|
303
|
+
options: {
|
|
304
|
+
width: string;
|
|
305
|
+
height: string;
|
|
306
|
+
hairline: boolean;
|
|
307
|
+
type: string;
|
|
308
|
+
size: string;
|
|
309
|
+
shape: string;
|
|
310
|
+
position: string;
|
|
311
|
+
plain: boolean;
|
|
312
|
+
disabled: boolean;
|
|
313
|
+
loading: boolean;
|
|
314
|
+
loadingText: string;
|
|
315
|
+
openType: string;
|
|
316
|
+
pagePath: string;
|
|
317
|
+
isTabBar: boolean;
|
|
318
|
+
text: string;
|
|
319
|
+
textColor: string;
|
|
320
|
+
icon: string;
|
|
321
|
+
color: string;
|
|
322
|
+
customStyle: string;
|
|
323
|
+
fill: boolean;
|
|
324
|
+
};
|
|
325
|
+
};
|
|
254
326
|
};
|
|
255
327
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
256
328
|
data: {
|
|
257
329
|
type: ObjectConstructor;
|
|
258
|
-
default:
|
|
330
|
+
default: {
|
|
331
|
+
data: {};
|
|
332
|
+
options: {
|
|
333
|
+
width: string;
|
|
334
|
+
height: string;
|
|
335
|
+
hairline: boolean;
|
|
336
|
+
type: string;
|
|
337
|
+
size: string;
|
|
338
|
+
shape: string;
|
|
339
|
+
position: string;
|
|
340
|
+
plain: boolean;
|
|
341
|
+
disabled: boolean;
|
|
342
|
+
loading: boolean;
|
|
343
|
+
loadingText: string;
|
|
344
|
+
openType: string;
|
|
345
|
+
pagePath: string;
|
|
346
|
+
isTabBar: boolean;
|
|
347
|
+
text: string;
|
|
348
|
+
textColor: string;
|
|
349
|
+
icon: string;
|
|
350
|
+
color: string;
|
|
351
|
+
customStyle: string;
|
|
352
|
+
fill: boolean;
|
|
353
|
+
};
|
|
354
|
+
};
|
|
259
355
|
};
|
|
260
356
|
}>> & Readonly<{}>, {
|
|
261
357
|
data: Record<string, any>;
|
|
@@ -433,12 +529,60 @@ export declare const uvUiList: import('vue').Ref<{
|
|
|
433
529
|
editCom: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
434
530
|
data: {
|
|
435
531
|
type: ObjectConstructor;
|
|
436
|
-
default:
|
|
532
|
+
default: {
|
|
533
|
+
data: {};
|
|
534
|
+
options: {
|
|
535
|
+
width: string;
|
|
536
|
+
height: string;
|
|
537
|
+
hairline: boolean;
|
|
538
|
+
type: string;
|
|
539
|
+
size: string;
|
|
540
|
+
shape: string;
|
|
541
|
+
position: string;
|
|
542
|
+
plain: boolean;
|
|
543
|
+
disabled: boolean;
|
|
544
|
+
loading: boolean;
|
|
545
|
+
loadingText: string;
|
|
546
|
+
openType: string;
|
|
547
|
+
pagePath: string;
|
|
548
|
+
isTabBar: boolean;
|
|
549
|
+
text: string;
|
|
550
|
+
textColor: string;
|
|
551
|
+
icon: string;
|
|
552
|
+
color: string;
|
|
553
|
+
customStyle: string;
|
|
554
|
+
fill: boolean;
|
|
555
|
+
};
|
|
556
|
+
};
|
|
437
557
|
};
|
|
438
558
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
439
559
|
data: {
|
|
440
560
|
type: ObjectConstructor;
|
|
441
|
-
default:
|
|
561
|
+
default: {
|
|
562
|
+
data: {};
|
|
563
|
+
options: {
|
|
564
|
+
width: string;
|
|
565
|
+
height: string;
|
|
566
|
+
hairline: boolean;
|
|
567
|
+
type: string;
|
|
568
|
+
size: string;
|
|
569
|
+
shape: string;
|
|
570
|
+
position: string;
|
|
571
|
+
plain: boolean;
|
|
572
|
+
disabled: boolean;
|
|
573
|
+
loading: boolean;
|
|
574
|
+
loadingText: string;
|
|
575
|
+
openType: string;
|
|
576
|
+
pagePath: string;
|
|
577
|
+
isTabBar: boolean;
|
|
578
|
+
text: string;
|
|
579
|
+
textColor: string;
|
|
580
|
+
icon: string;
|
|
581
|
+
color: string;
|
|
582
|
+
customStyle: string;
|
|
583
|
+
fill: boolean;
|
|
584
|
+
};
|
|
585
|
+
};
|
|
442
586
|
};
|
|
443
587
|
}>> & Readonly<{}>, {
|
|
444
588
|
data: Record<string, any>;
|
|
@@ -795,3 +939,7 @@ export declare const uvUIOptions: import('vue').Ref<{
|
|
|
795
939
|
};
|
|
796
940
|
};
|
|
797
941
|
}>;
|
|
942
|
+
export { ButtonView, ButtonData } from './button/index';
|
|
943
|
+
export { TextareaView, TextareaData } from './textarea/index';
|
|
944
|
+
export { NumberBoxView, NumberBoxData } from './numberBxo/index';
|
|
945
|
+
export { CollapseView, CollapseData } from './collapse/index';
|
package/vuv-ui/vuv-ui.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
.button_box[data-v-4c21275b]{align-items:center;margin-top:10px;display:flex}.button_box[data-v-4c21275b] .uv-button{width:100%;height:100%}.plain[data-v-4c21275b] .uv-button{background-color:transparent!important}.banner-content[data-v-
|
|
1
|
+
.button_box[data-v-4c21275b]{align-items:center;margin-top:10px;display:flex}.button_box[data-v-4c21275b] .uv-button{width:100%;height:100%}.plain[data-v-4c21275b] .uv-button{background-color:transparent!important}.banner-content[data-v-1d22f0b3]{overflow-x:auto}.item-list[data-v-1d22f0b3]{border:1px solid #c8c8c8;border-radius:4px;justify-content:space-between;margin:10px;padding:5px;display:flex}.item-list .l-info[data-v-1d22f0b3]{width:calc(100% - 100px);padding-top:4px;font-size:12px}.item-list .l-info p[data-v-1d22f0b3]{white-space:nowrap;margin:5px 0 0;display:flex;overflow:hidden}.item-list .l-info p .link[data-v-1d22f0b3]{color:#1b8bff;cursor:pointer}.item-list .l-info p .text[data-v-1d22f0b3]{white-space:nowrap;text-align:-webkit-auto;text-overflow:ellipsis;overflow:hidden}.item-list .r-image[data-v-1d22f0b3]{text-align:right}.item-list .r-image .el-icon-close[data-v-1d22f0b3]{color:#999;cursor:pointer;margin-bottom:6px;font-size:12px;font-weight:600}.item-list .r-image .el-icon-close[data-v-1d22f0b3]:hover{color:red}.item-list .r-image .image-box[data-v-1d22f0b3]{background:#fff;border-radius:5px;justify-content:center;align-items:center;width:100px;height:70px;display:flex;position:relative;overflow:hidden}.item-list .r-image .image-box img[data-v-1d22f0b3]{max-width:100%}.item-list .r-image .image-box .placeholder-text[data-v-1d22f0b3]{color:#999;font-size:12px}.mt-5px[data-v-1d22f0b3]{margin-top:5px}.mt-10px[data-v-1d22f0b3]{margin-top:10px}.textarea_box[data-v-8eb1f98c]{align-items:center;margin-top:10px;display:flex}.banner-content[data-v-a3c09a31]{overflow-x:auto}.item-list[data-v-a3c09a31]{border:1px solid #c8c8c8;border-radius:4px;justify-content:space-between;margin:10px;padding:5px;display:flex}.item-list .l-info[data-v-a3c09a31]{width:calc(100% - 100px);padding-top:4px;font-size:12px}.item-list .l-info p[data-v-a3c09a31]{white-space:nowrap;margin:5px 0 0;display:flex;overflow:hidden}.item-list .l-info p .link[data-v-a3c09a31]{color:#1b8bff;cursor:pointer}.item-list .l-info p .text[data-v-a3c09a31]{white-space:nowrap;text-align:-webkit-auto;text-overflow:ellipsis;overflow:hidden}.item-list .r-image[data-v-a3c09a31]{text-align:right}.item-list .r-image .el-icon-close[data-v-a3c09a31]{color:#999;cursor:pointer;margin-bottom:6px;font-size:12px;font-weight:600}.item-list .r-image .el-icon-close[data-v-a3c09a31]:hover{color:red}.item-list .r-image .image-box[data-v-a3c09a31]{background:#fff;border-radius:5px;justify-content:center;align-items:center;width:100px;height:70px;display:flex;position:relative;overflow:hidden}.item-list .r-image .image-box img[data-v-a3c09a31]{max-width:100%}.item-list .r-image .image-box .placeholder-text[data-v-a3c09a31]{color:#999;font-size:12px}.mt-5px[data-v-a3c09a31]{margin-top:5px}.mt-10px[data-v-a3c09a31]{margin-top:10px}.number-box-wrapper[data-v-64b58a56]{background-color:#fff;align-items:center;padding:10px;display:flex}.banner-content[data-v-e6327043],.banner-content[data-v-76d80e24]{overflow-x:auto}.item-list[data-v-76d80e24]{border:1px solid #c8c8c8;border-radius:4px;justify-content:space-between;margin:10px;padding:5px;display:flex}.item-list .l-info[data-v-76d80e24]{width:calc(100% - 100px);padding-top:4px;font-size:12px}.item-list .l-info p[data-v-76d80e24]{white-space:nowrap;margin:5px 0 0;display:flex;overflow:hidden}.item-list .l-info p .link[data-v-76d80e24]{color:#1b8bff;cursor:pointer}.item-list .l-info p .text[data-v-76d80e24]{white-space:nowrap;text-align:-webkit-auto;text-overflow:ellipsis;overflow:hidden}.item-list .r-image[data-v-76d80e24]{text-align:right}.item-list .r-image .el-icon-close[data-v-76d80e24]{color:#999;cursor:pointer;margin-bottom:6px;font-size:12px;font-weight:600}.item-list .r-image .el-icon-close[data-v-76d80e24]:hover{color:red}.item-list .r-image .image-box[data-v-76d80e24]{background:#fff;border-radius:5px;justify-content:center;align-items:center;width:100px;height:70px;display:flex;position:relative;overflow:hidden}.item-list .r-image .image-box img[data-v-76d80e24]{max-width:100%}.item-list .r-image .image-box .placeholder-text[data-v-76d80e24]{color:#999;font-size:12px}.mt-5px[data-v-76d80e24]{margin-top:5px}.mt-10px[data-v-76d80e24]{margin-top:10px}
|
|
2
2
|
/*$vite$:1*/
|