Files

16 lines
309 B
Vue
Raw Normal View History

2021-11-30 09:55:37 +08:00
<template>
<router-view />
</template>
2022-07-31 17:51:45 +08:00
<script setup>
import useSettingsStore from '@/store/modules/settings'
import { handleThemeStyle } from '@/utils/theme'
onMounted(() => {
nextTick(() => {
// 初始化主题样式
handleThemeStyle(useSettingsStore().theme)
})
})
</script>