App.vue 368 B

12345678910111213141516171819202122
  1. <script setup>
  2. import { useAppStore } from '@/store/modules/app'
  3. const appStore = useAppStore()
  4. </script>
  5. <template>
  6. <el-config-provider :locale="appStore.locale" :size="appStore.size">
  7. <router-view />
  8. </el-config-provider>
  9. </template>
  10. <style lang="scss">
  11. .w_1200 {
  12. // width: 1200px;
  13. margin: 0 auto;
  14. }
  15. #index {
  16. width: 100%;
  17. height: 100%;
  18. }
  19. </style>