Files
GEAR-OA/gear-ui3/src/App.vue

20 lines
341 B
Vue
Raw Normal View History

2025-08-06 14:26:48 +08:00
<template>
<router-view />
</template>
<script setup>
import useSettingsStore from '@/store/modules/settings'
import { handleThemeStyle } from '@/utils/theme'
onMounted(() => {
nextTick(() => {
// 初始化主题样式
handleThemeStyle(useSettingsStore().theme)
})
})
</script>
2025-08-09 14:39:14 +08:00
<style>
/* @import "tailwindcss"; */
</style>