App.vue 456 B

1234567891011121314151617181920
  1. <!--
  2. * @Author: fxs bjnsfxs@163.com
  3. * @Date: 2024-08-20 14:06:49
  4. * @LastEditors: fxs bjnsfxs@163.com
  5. * @LastEditTime: 2024-09-05 17:30:14
  6. * @FilePath: \Game-Backstage-Management-System\src\App.vue
  7. * @Description:
  8. *
  9. -->
  10. <script setup lang="ts">
  11. import { zhCn } from 'element-plus/es/locales.mjs'
  12. </script>
  13. <template>
  14. <el-config-provider :locale="zhCn">
  15. <router-view></router-view>
  16. </el-config-provider>
  17. </template>
  18. <style scoped></style>