1234567891011121314151617181920 |
- <!--
- * @Author: fxs bjnsfxs@163.com
- * @Date: 2024-08-20 14:06:49
- * @LastEditors: fxs bjnsfxs@163.com
- * @LastEditTime: 2024-08-29 09:43:18
- * @FilePath: \Game-Backstage-Management-System\src\App.vue
- * @Description:
- *
- -->
- <script setup lang="ts">
- import { zhCn } from 'element-plus/es/locales.mjs'
- </script>
- <template>
- <el-config-provider :locale="zhCn">
- <RouterView />
- </el-config-provider>
- </template>
- <style scoped></style>
|