This commit is contained in:
jxxghp
2023-06-26 15:53:11 +08:00
parent 223badedad
commit b4f686e007
3 changed files with 21 additions and 32 deletions

9
components.d.ts vendored
View File

@@ -9,13 +9,10 @@ export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
CardStatisticsHorizontal: typeof import('./src/components/cards/CardStatisticsHorizontal.vue')['default']
CardStatisticsVertical: typeof import('./src/components/cards/CardStatisticsVertical.vue')['default']
CardStatisticsWithImages: typeof import('./src/components/cards/CardStatisticsWithImages.vue')['default']
ErrorHeader: typeof import('./src/@/components/ErrorHeader.vue')['default']
MoreBtn: typeof import('./src/@/components/MoreBtn.vue')['default']
ErrorHeader: typeof import('./src/@core/components/ErrorHeader.vue')['default']
MoreBtn: typeof import('./src/@core/components/MoreBtn.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
ThemeSwitcher: typeof import('./src/@/components/ThemeSwitcher.vue')['default']
ThemeSwitcher: typeof import('./src/@core/components/ThemeSwitcher.vue')['default']
}
}