This commit is contained in:
2026-01-20 16:56:01 +08:00
commit efdaaadc61
338 changed files with 44003 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>