This commit is contained in:
guorui
2025-02-19 10:28:49 +08:00
commit dad6d41cbc
1052 changed files with 102186 additions and 0 deletions

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>