RuoYi-Cloud/ruoyi-ui/src/App.vue

16 lines
287 B
Vue

<template>
<router-view />
</template>
<script setup>
import useSettingsStore from '@/store/modules/settings'
import { handleThemeStyle } from '@/utils/theme'
onMounted(() => {
nextTick(() => {
// ³õʼ»¯Ö÷ÌâÑùʽ
handleThemeStyle(useSettingsStore().theme)
})
})
</script>