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
+3 -3
View File
@@ -12,10 +12,10 @@ declare module '@vue/runtime-core' {
CardStatisticsHorizontal: typeof import('./src/components/cards/CardStatisticsHorizontal.vue')['default'] CardStatisticsHorizontal: typeof import('./src/components/cards/CardStatisticsHorizontal.vue')['default']
CardStatisticsVertical: typeof import('./src/components/cards/CardStatisticsVertical.vue')['default'] CardStatisticsVertical: typeof import('./src/components/cards/CardStatisticsVertical.vue')['default']
CardStatisticsWithImages: typeof import('./src/components/cards/CardStatisticsWithImages.vue')['default'] CardStatisticsWithImages: typeof import('./src/components/cards/CardStatisticsWithImages.vue')['default']
ErrorHeader: typeof import('./src/@components/ErrorHeader.vue')['default'] ErrorHeader: typeof import('./src/@/components/ErrorHeader.vue')['default']
MoreBtn: typeof import('./src/@components/MoreBtn.vue')['default'] MoreBtn: typeof import('./src/@/components/MoreBtn.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink'] RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView'] RouterView: typeof import('vue-router')['RouterView']
ThemeSwitcher: typeof import('./src/@components/ThemeSwitcher.vue')['default'] ThemeSwitcher: typeof import('./src/@/components/ThemeSwitcher.vue')['default']
} }
} }
+1 -1
View File
@@ -8,7 +8,7 @@ import AnalyticsTotalProfitLineCharts from '@/views/dashboard/AnalyticsTotalProf
import AnalyticsTransactions from '@/views/dashboard/AnalyticsTransactions.vue' import AnalyticsTransactions from '@/views/dashboard/AnalyticsTransactions.vue'
import AnalyticsUserTable from '@/views/dashboard/AnalyticsUserTable.vue' import AnalyticsUserTable from '@/views/dashboard/AnalyticsUserTable.vue'
import AnalyticsWeeklyOverview from '@/views/dashboard/AnalyticsWeeklyOverview.vue' import AnalyticsWeeklyOverview from '@/views/dashboard/AnalyticsWeeklyOverview.vue'
import CardStatisticsVertical from '@components/cards/CardStatisticsVertical.vue' import CardStatisticsVertical from '@/components/cards/CardStatisticsVertical.vue'
const totalProfit = { const totalProfit = {
title: 'Total Profit', title: 'Total Profit',
+1 -1
View File
@@ -20,7 +20,7 @@ export default defineConfig({
}, },
}), }),
Components({ Components({
dirs: ['src/@components'], dirs: ['src/@/components'],
dts: true, dts: true,
}), }),
AutoImport({ AutoImport({