App.vue 344 B

1234567891011121314151617
  1. <template>
  2. <router-view />
  3. </template>
  4. <script setup>
  5. import useSettingsStore from '@/store/modules/settings'
  6. import { handleThemeStyle } from '@/utils/theme'
  7. import '@/assets/icons/iconfont/iconfont.css'
  8. onMounted(() => {
  9. nextTick(() => {
  10. // 初始化主题样式
  11. handleThemeStyle(useSettingsStore().theme)
  12. })
  13. })
  14. </script>