App.vue 443 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. // This starter template is using Vue 3 <script setup> SFCs
  3. // Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
  4. import { AppStore } from '@/store/modules/app';
  5. const store = AppStore();
  6. store.updateLoading(false);
  7. </script>
  8. <template>
  9. <init-loading>
  10. <RouterView />
  11. </init-loading>
  12. </template>
  13. <style>
  14. @import './style/index.css';
  15. @import './style/global.css';
  16. </style>