12345678910111213141516171819202122 |
- <script setup>
- import { useAppStore } from '@/store/modules/app'
- const appStore = useAppStore()
- </script>
- <template>
- <el-config-provider :locale="appStore.locale" :size="appStore.size">
- <router-view />
- </el-config-provider>
- </template>
- <style lang="scss">
- .w_1200 {
- // width: 1200px;
- margin: 0 auto;
- }
- #index {
- width: 100%;
- height: 100%;
- }
- </style>
|