This commit is contained in:
SunSeekerX
2026-01-21 11:55:28 +08:00
149 changed files with 15035 additions and 4017 deletions

View File

@@ -51,7 +51,7 @@
import { ref, computed, watch, onMounted, onUnmounted } from 'vue'
import { Chart } from 'chart.js/auto'
import { useDashboardStore } from '@/stores/dashboard'
import { useChartConfig } from '@/composables/useChartConfig'
import { useChartConfig } from '@/utils/useChartConfig'
import { formatNumber } from '@/utils/tools'
const dashboardStore = useDashboardStore()
@@ -144,7 +144,3 @@ onUnmounted(() => {
}
})
</script>
<style scoped>
/* 组件特定样式 */
</style>

View File

@@ -38,7 +38,7 @@
import { ref, onMounted, onUnmounted, watch } from 'vue'
import { Chart } from 'chart.js/auto'
import { useDashboardStore } from '@/stores/dashboard'
import { useChartConfig } from '@/composables/useChartConfig'
import { useChartConfig } from '@/utils/useChartConfig'
import { useThemeStore } from '@/stores/theme'
const dashboardStore = useDashboardStore()
@@ -189,7 +189,3 @@ onUnmounted(() => {
}
})
</script>
<style scoped>
/* 组件特定样式 */
</style>