@@ -36,6 +36,42 @@ declare module 'vue' {
36
36
"
37
37
` ;
38
38
39
+ exports [` dts > generate components with prefix 1` ] = `
40
+ "/* eslint-disable */
41
+ // @ts-nocheck
42
+ // Generated by unplugin-vue-components
43
+ // Read more: https://github.com/vuejs/core/pull/3399
44
+ // biome-ignore lint: disable
45
+ export { }
46
+
47
+ /* prettier-ignore */
48
+ declare module 'vue' {
49
+ export interface GlobalComponents {
50
+ CustomPrefixAvatar: typeof import (' ./examples/vite-vue3/src/components/global/avatar.vue' )[' default' ]
51
+ CustomPrefixBook: typeof import (' ./examples/vite-vue3/src/components/book/index.vue' )[' default' ]
52
+ CustomPrefixButton: typeof import (' ./examples/vite-vue3/src/components/ui/button.vue' )[' default' ]
53
+ CustomPrefixCheckbox: typeof import (' ./examples/vite-vue3/src/components/ui/nested/checkbox.vue' )[' default' ]
54
+ CustomPrefixCollapseFolderAndComponentFromRoot: typeof import (' ./examples/vite-vue3/src/components/collapse/collapseFolder/CollapseFolderAndComponentFromRoot.vue' )[' default' ]
55
+ CustomPrefixComponentA: typeof import (' ./examples/vite-vue3/src/components/ComponentA.vue' )[' default' ]
56
+ CustomPrefixComponentAsync: typeof import (' ./examples/vite-vue3/src/components/ComponentAsync.vue' )[' default' ]
57
+ CustomPrefixComponentB: typeof import (' ./examples/vite-vue3/src/components/ComponentB.vue' )[' default' ]
58
+ CustomPrefixComponentC: typeof import (' ./examples/vite-vue3/src/components/component-c.vue' )[' default' ]
59
+ CustomPrefixComponentD: typeof import (' ./examples/vite-vue3/src/components/ComponentD.vue' )[' default' ]
60
+ CustomPrefixFolderAndComponentPartially: typeof import (' ./examples/vite-vue3/src/components/collapse/collapseFolder/FolderAndComponentPartially.vue' )[' default' ]
61
+ CustomPrefixKebabCaseCollapseFile: typeof import (' ./examples/vite-vue3/src/components/kebab-case/kebab-case-collapse/KebabCaseCollapseFile.vue' )[' default' ]
62
+ CustomPrefixKebabCaseFile: typeof import (' ./examples/vite-vue3/src/components/kebab-case/KebabCaseFile.vue' )[' default' ]
63
+ CustomPrefixRecursive: typeof import (' ./examples/vite-vue3/src/components/Recursive.vue' )[' default' ]
64
+ RouterLink: typeof import (' vue-router' )[' RouterLink' ]
65
+ RouterView: typeof import (' vue-router' )[' RouterView' ]
66
+ TestComp: typeof import (' test/component/TestComp' )[' default' ]
67
+ }
68
+ export interface GlobalDirectives {
69
+ vLoading: typeof import (' test/directive/Loading' )[' default' ]
70
+ }
71
+ }
72
+ "
73
+ ` ;
74
+
39
75
exports [` dts > getDeclaration 1` ] = `
40
76
"/* eslint-disable */
41
77
// @ts-nocheck
0 commit comments