邃芒慧影管理端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1年前
1234567891011
  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>