hzzt-plus 0.0.3 → 0.0.4
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/dist/index.css +1 -1
- package/dist/index.full.js +426 -295
- package/dist/index.full.min.js +13 -13
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +13 -13
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +427 -297
- package/es/components/collapse/index.mjs +2 -2
- package/es/components/collapse/src/collapse.mjs +67 -0
- package/es/components/collapse/src/collapse.mjs.map +1 -1
- package/es/components/collapse/src/collapse2.mjs +0 -67
- package/es/components/collapse/src/collapse2.mjs.map +1 -1
- package/es/components/confirm-password/index.d.ts +352 -283
- package/es/components/confirm-password/src/confirm-password.mjs.map +1 -1
- package/es/components/confirm-password/src/confirm-password.vue.d.ts +352 -283
- package/es/components/dropdown/src/index.mjs.map +1 -1
- package/es/components/icon/src/index.mjs.map +1 -1
- package/es/components/icon/src/index.vue.d.ts +75 -39
- package/es/components/page-size/index.d.ts +2201 -12995
- package/es/components/page-size/src/index.mjs.map +1 -1
- package/es/components/page-size/src/index.vue.d.ts +2201 -12995
- package/es/components/pagination/index.d.ts +75 -39
- package/es/components/pagination/src/index.mjs.map +1 -1
- package/es/components/pagination/src/index.vue.d.ts +75 -39
- package/es/components/tab/src/index.mjs.map +1 -1
- package/es/components/title/src/title.mjs.map +1 -1
- package/es/components/tooltip/index.d.ts +606 -2136
- package/es/components/tooltip/src/tooltip.vue.d.ts +606 -2136
- package/es/directives/drag/index.d.ts +3 -0
- package/es/directives/drag/index.mjs +81 -0
- package/es/directives/drag/index.mjs.map +1 -0
- package/es/directives/index.d.ts +1 -0
- package/es/directives/index.mjs +1 -0
- package/es/directives/index.mjs.map +1 -1
- package/es/index.mjs +1 -0
- package/es/index.mjs.map +1 -1
- package/lib/components/collapse/index.js +2 -2
- package/lib/components/collapse/src/collapse.js +70 -0
- package/lib/components/collapse/src/collapse.js.map +1 -1
- package/lib/components/collapse/src/collapse2.js +0 -70
- package/lib/components/collapse/src/collapse2.js.map +1 -1
- package/lib/components/confirm-password/index.d.ts +352 -283
- package/lib/components/confirm-password/src/confirm-password.js.map +1 -1
- package/lib/components/confirm-password/src/confirm-password.vue.d.ts +352 -283
- package/lib/components/dropdown/src/index.js.map +1 -1
- package/lib/components/icon/src/index.js.map +1 -1
- package/lib/components/icon/src/index.vue.d.ts +75 -39
- package/lib/components/page-size/index.d.ts +2201 -12995
- package/lib/components/page-size/src/index.js.map +1 -1
- package/lib/components/page-size/src/index.vue.d.ts +2201 -12995
- package/lib/components/pagination/index.d.ts +75 -39
- package/lib/components/pagination/src/index.js.map +1 -1
- package/lib/components/pagination/src/index.vue.d.ts +75 -39
- package/lib/components/tab/src/index.js.map +1 -1
- package/lib/components/title/src/title.js.map +1 -1
- package/lib/components/tooltip/index.d.ts +606 -2136
- package/lib/components/tooltip/src/tooltip.vue.d.ts +606 -2136
- package/lib/directives/drag/index.d.ts +3 -0
- package/lib/directives/drag/index.js +85 -0
- package/lib/directives/drag/index.js.map +1 -0
- package/lib/directives/index.d.ts +1 -0
- package/lib/directives/index.js +2 -0
- package/lib/directives/index.js.map +1 -1
- package/lib/index.js +18 -16
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/theme/base.css +1 -1
- package/theme/index.css +1 -1
- package/theme/src/common/display.scss +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../../../../packages/components/dropdown/src/index.vue"],"sourcesContent":["<template>\n <ul v-click-outside=\"close\" class=\"hzzt-dropdown\" @click.stop=\"dropToggle\">\n <li :class=\"{ 'hzzt-dropdown-li': true, 'hzzt-dropdown-li-show': toggle }\">\n <span class=\"hzzt-dropdown-name\">{{ label }}</span>\n <span class=\"caret\" />\n <ul class=\"hzzt-dropdown-menu\">\n <template v-for=\"(option, index) in options\">\n <li\n v-if=\"isEmpty(option[props.children])\"\n :key=\"index\"\n :class=\"{\n 'hzzt-dropdown-menu-item': true,\n selected: defaultValue.includes(option[props.value]),\n }\"\n >\n <a\n class=\"hzzt-dropdown-menu-item-label\"\n @click=\"selectValue([option[props.value]])\"\n >{{ option[props.label] }}</a\n >\n </li>\n <li\n v-else\n :key=\"index + 'submenu'\"\n class=\"hzzt-dropdown-menu-item hzzt-dropdown-submenu\"\n >\n <a class=\"submenu\">{{ option[props.label] }}</a>\n <ul :class=\"['pull-' + position]\" class=\"hzzt-dropdown-menu\">\n <li\n v-for=\"(child, cIndex) in option.children\"\n :key=\"cIndex\"\n :class=\"{\n 'hzzt-dropdown-menu-item': true,\n selected: defaultValue.includes(child[props.value]),\n }\"\n >\n <a\n class=\"hzzt-dropdown-menu-item-label\"\n @click=\"\n selectValue([option[props.value], child[props.value]])\n \"\n >{{ child[props.label] }}</a\n >\n </li>\n </ul>\n </li>\n <li v-if=\"option.divider\" :key=\"index + 'divider'\" class=\"divider\" />\n </template>\n </ul>\n </li>\n </ul>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref } from 'vue'\nimport { ClickOutside as vClickOutside } from 'element-plus'\nimport { isEmpty } from '@hzzt-plus/utils'\n\nconst dProps = defineProps({\n options: {\n type: Array,\n default: () => [],\n },\n label: String,\n value: String,\n defaultValue: {\n type: Array,\n default: () => [],\n },\n position: {\n type: String,\n default: 'right',\n },\n props: {\n type: Object,\n default: () => ({\n children: 'children',\n label: 'label',\n value: 'value',\n }),\n },\n returnType: {\n type: String,\n default: 'Array',\n },\n})\n\nconst emits = defineEmits(['change'])\n\ndefineOptions({\n name: 'HzztDropDown',\n})\n\nconst toggle = ref(false)\n\nfunction dropToggle() {\n toggle.value = !toggle.value\n}\n\nfunction close() {\n toggle.value = false\n}\n\nfunction selectValue(val) {\n if (dProps.returnType === 'Array') {\n emits('change', val)\n }\n if (dProps.returnType === 'String') {\n emits('change', val.last)\n }\n}\n</script>\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../../../packages/components/dropdown/src/index.vue"],"sourcesContent":["<template>\n <ul v-click-outside=\"close\" class=\"hzzt-dropdown\" @click.stop=\"dropToggle\">\n <li :class=\"{ 'hzzt-dropdown-li': true, 'hzzt-dropdown-li-show': toggle }\">\n <span class=\"hzzt-dropdown-name\">{{ label }}</span>\n <span class=\"caret\" />\n <ul class=\"hzzt-dropdown-menu\">\n <template v-for=\"(option, index) in options\">\n <li\n v-if=\"isEmpty(option[props.children])\"\n :key=\"index\"\n :class=\"{\n 'hzzt-dropdown-menu-item': true,\n selected: defaultValue.includes(option[props.value]),\n }\"\n >\n <a\n class=\"hzzt-dropdown-menu-item-label\"\n @click=\"selectValue([option[props.value]])\"\n >{{ option[props.label] }}</a\n >\n </li>\n <li\n v-else\n :key=\"index + 'submenu'\"\n class=\"hzzt-dropdown-menu-item hzzt-dropdown-submenu\"\n >\n <a class=\"submenu\">{{ option[props.label] }}</a>\n <ul :class=\"['pull-' + position]\" class=\"hzzt-dropdown-menu\">\n <li\n v-for=\"(child, cIndex) in option.children\"\n :key=\"cIndex\"\n :class=\"{\n 'hzzt-dropdown-menu-item': true,\n selected: defaultValue.includes(child[props.value]),\n }\"\n >\n <a\n class=\"hzzt-dropdown-menu-item-label\"\n @click=\"\n selectValue([option[props.value], child[props.value]])\n \"\n >{{ child[props.label] }}</a\n >\n </li>\n </ul>\n </li>\n <li v-if=\"option.divider\" :key=\"index + 'divider'\" class=\"divider\" />\n </template>\n </ul>\n </li>\n </ul>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref } from 'vue'\nimport { ClickOutside as vClickOutside } from 'element-plus'\nimport { isEmpty } from '@hzzt-plus/utils'\n\nconst dProps = defineProps({\n options: {\n type: Array,\n default: () => [],\n },\n label: String,\n value: String,\n defaultValue: {\n type: Array,\n default: () => [],\n },\n position: {\n type: String,\n default: 'right',\n },\n props: {\n type: Object,\n default: () => ({\n children: 'children',\n label: 'label',\n value: 'value',\n }),\n },\n returnType: {\n type: String,\n default: 'Array',\n },\n})\n\nconst emits = defineEmits(['change'])\n\ndefineOptions({\n name: 'HzztDropDown',\n})\n\nconst toggle = ref(false)\n\nfunction dropToggle() {\n toggle.value = !toggle.value\n}\n\nfunction close() {\n toggle.value = false\n}\n\nfunction selectValue(val) {\n if (dProps.returnType === 'Array') {\n emits('change', val)\n }\n if (dProps.returnType === 'String') {\n emits('change', val.last)\n }\n}\n</script>\n"],"names":["_defineComponent","_withDirectives","_openBlock","_createElementBlock","_withModifiers","_createElementVNode"],"mappings":";;;;;;;;;;;;;;;AAsDA,CAAA,CAAA,CAAA;AACA,MAAA,4BAA8CA,eAAA,CAAA;AAC9C,EAAA,GAAA,WAAwB;;;AAiCV,MACN,IAAA,EAAA,KAAA;AACR,MAAA,OAAA,EAAA,MAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,KAAM;AAEN,IAAA,SAAS,WAAa,CAAA,GAAA,EAAA;AACpB,MAAO,IAAA,MAAA,CAAA,UAAgB,KAAA,OAAA,EAAA;AAAA,QACzB,KAAA,CAAA,QAAA,EAAA,GAAA,CAAA,CAAA;AAEA,OAAA;AACE,MAAA,IAAA,MAAe,CAAA,UAAA,KAAA,QAAA,EAAA;AAAA,QACjB,KAAA,CAAA,QAAA,EAAA,GAAA,CAAA,IAAA,CAAA,CAAA;AAEA,OAAA;AACE,KAAI;AACF,IAAA,OAAA,CAAA,YAAgB,KAAG;AAAA,MACrB,OAAAC,cAAA,EAAAC,SAAA,EAAA,EAAAC,kBAAA,CAAA,IAAA,EAAA;AACA,QAAI,KAAA,EAAA;AACF,QAAM,OAAA,EAAAC,aAAkB,CAAA,UAAA,EAAA,CAAA,MAAA,CAAA,CAAA;AAAA,OAC1B,EAAA;AAAA,QACFC,kBAAA,CAAA,IAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../../../../packages/components/icon/src/index.vue"],"sourcesContent":["<template>\n <ElIcon v-bind=\"attrs\">\n <component :is=\"componentName\" />\n </ElIcon>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, useAttrs } from 'vue'\nimport { ElIcon } from 'element-plus'\n\nconst props = defineProps({\n name: {\n type: String,\n required: true,\n },\n type: {\n type: String,\n default: 'el',\n },\n})\n\nconst attrs = useAttrs()\n\nconst componentName = computed(() => `hzzt-${props.type}-${props.name}`)\n</script>\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAqBA,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AAEvB,
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../../../../packages/components/icon/src/index.vue"],"sourcesContent":["<template>\n <ElIcon v-bind=\"attrs\">\n <component :is=\"componentName\" />\n </ElIcon>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed, useAttrs } from 'vue'\nimport { ElIcon } from 'element-plus'\n\nconst props = defineProps({\n name: {\n type: String,\n required: true,\n },\n type: {\n type: String,\n default: 'el',\n },\n})\n\nconst attrs = useAttrs()\n\nconst componentName = computed(() => `hzzt-${props.type}-${props.name}`)\n</script>\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAqBA,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AAEvB,IAAM,MAAA,aAAA,GAAgB,SAAS,MAAM,CAAA,KAAA,EAAQ,MAAM,IAAI,CAAA,CAAA,EAAI,KAAM,CAAA,IAAI,CAAE,CAAA,CAAA,CAAA;;;;;;;;;;;;;;;"}
|
|
@@ -24,21 +24,71 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
24
24
|
[x: string]: unknown;
|
|
25
25
|
};
|
|
26
26
|
componentName: import("vue").ComputedRef<string>;
|
|
27
|
-
ElIcon: import("element-plus/es/utils").SFCWithInstall<
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
27
|
+
ElIcon: import("element-plus/es/utils").SFCWithInstall<{
|
|
28
|
+
new (...args: any[]): {
|
|
29
|
+
$: import("vue").ComponentInternalInstance;
|
|
30
|
+
$data: {};
|
|
31
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
readonly size: {
|
|
33
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
34
|
+
readonly required: false;
|
|
35
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
36
|
+
__epPropKey: true;
|
|
37
|
+
};
|
|
38
|
+
readonly color: {
|
|
39
|
+
readonly type: import("vue").PropType<string>;
|
|
40
|
+
readonly required: false;
|
|
41
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
42
|
+
__epPropKey: true;
|
|
43
|
+
};
|
|
44
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
45
|
+
$attrs: {
|
|
46
|
+
[x: string]: unknown;
|
|
47
|
+
};
|
|
48
|
+
$refs: {
|
|
49
|
+
[x: string]: unknown;
|
|
50
|
+
};
|
|
51
|
+
$slots: Readonly<{
|
|
52
|
+
[name: string]: import("vue").Slot | undefined;
|
|
53
|
+
}>;
|
|
54
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
55
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
|
|
56
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
57
|
+
$el: any;
|
|
58
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
readonly size: {
|
|
60
|
+
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
61
|
+
readonly required: false;
|
|
62
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
63
|
+
__epPropKey: true;
|
|
64
|
+
};
|
|
65
|
+
readonly color: {
|
|
66
|
+
readonly type: import("vue").PropType<string>;
|
|
67
|
+
readonly required: false;
|
|
68
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
69
|
+
__epPropKey: true;
|
|
70
|
+
};
|
|
71
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & {
|
|
72
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
77
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
78
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
79
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
80
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
85
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
86
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
|
|
87
|
+
};
|
|
88
|
+
$forceUpdate: () => void;
|
|
89
|
+
$nextTick: typeof import("vue").nextTick;
|
|
90
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
91
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
42
92
|
readonly size: {
|
|
43
93
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
44
94
|
readonly required: false;
|
|
@@ -51,29 +101,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
101
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
52
102
|
__epPropKey: true;
|
|
53
103
|
};
|
|
54
|
-
}>> & {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
b: (blockSuffix?: string | undefined) => string;
|
|
60
|
-
e: (element?: string | undefined) => string;
|
|
61
|
-
m: (modifier?: string | undefined) => string;
|
|
62
|
-
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
63
|
-
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
64
|
-
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
65
|
-
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
66
|
-
is: {
|
|
67
|
-
(name: string, state: boolean | undefined): string;
|
|
68
|
-
(name: string): string;
|
|
69
|
-
};
|
|
70
|
-
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
71
|
-
cssVarName: (name: string) => string;
|
|
72
|
-
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
73
|
-
cssVarBlockName: (name: string) => string;
|
|
74
|
-
};
|
|
75
|
-
style: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
76
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
104
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
|
|
105
|
+
__isFragment?: undefined;
|
|
106
|
+
__isTeleport?: undefined;
|
|
107
|
+
__isSuspense?: undefined;
|
|
108
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
77
109
|
readonly size: {
|
|
78
110
|
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
79
111
|
readonly required: false;
|
|
@@ -86,7 +118,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
86
118
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
87
119
|
__epPropKey: true;
|
|
88
120
|
};
|
|
89
|
-
}>>, {}
|
|
121
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
122
|
+
$slots: {
|
|
123
|
+
default?(_: {}): any;
|
|
124
|
+
};
|
|
125
|
+
})>;
|
|
90
126
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
91
127
|
name: {
|
|
92
128
|
type: StringConstructor;
|