App.vue 351 B

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