初始化项目

This commit is contained in:
2025-06-10 14:34:08 +08:00
parent 19c84b3dd4
commit 11b51d84a3
273 changed files with 22747 additions and 0 deletions

15
src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<router-view />
</template>
<script setup>
import useSettingsStore from '@/store/modules/settings'
import { handleThemeStyle } from '@/utils/theme'
onMounted(() => {
nextTick(() => {
// 初始化主题样式
handleThemeStyle(useSettingsStore().theme)
})
})
</script>