邃芒慧语、照片说话(PC) https://photo.metavatar.cc/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
306 B

  1. <script setup lang="ts">
  2. import { ElConfigProvider } from 'element-plus';
  3. import { useAppStore } from '@/store/modules/app';
  4. const appStore = useAppStore();
  5. </script>
  6. <template>
  7. <el-config-provider :locale="appStore.locale" :size="appStore.size">
  8. <router-view />
  9. </el-config-provider>
  10. </template>