This commit is contained in:
jxxghp
2023-06-26 07:45:13 +08:00
parent c1815e9266
commit 223badedad
3 changed files with 5 additions and 5 deletions

6
components.d.ts vendored
View File

@@ -12,10 +12,10 @@ declare module '@vue/runtime-core' {
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/@/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/@components/ThemeSwitcher.vue')['default']
ThemeSwitcher: typeof import('./src/@/components/ThemeSwitcher.vue')['default']
}
}

View File

@@ -8,7 +8,7 @@ import AnalyticsTotalProfitLineCharts from '@/views/dashboard/AnalyticsTotalProf
import AnalyticsTransactions from '@/views/dashboard/AnalyticsTransactions.vue'
import AnalyticsUserTable from '@/views/dashboard/AnalyticsUserTable.vue'
import AnalyticsWeeklyOverview from '@/views/dashboard/AnalyticsWeeklyOverview.vue'
import CardStatisticsVertical from '@components/cards/CardStatisticsVertical.vue'
import CardStatisticsVertical from '@/components/cards/CardStatisticsVertical.vue'
const totalProfit = {
title: 'Total Profit',

View File

@@ -20,7 +20,7 @@ export default defineConfig({
},
}),
Components({
dirs: ['src/@components'],
dirs: ['src/@/components'],
dts: true,
}),
AutoImport({