This commit is contained in:
jxxghp
2023-06-26 07:23:21 +08:00
parent 4d8f63c223
commit c1815e9266
12 changed files with 47 additions and 74 deletions

12
components.d.ts vendored
View File

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