src/App.vue
¶Ô±ÈÐÂÎļþ @@ -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>