App.vue 427 B

1234567891011121314151617181920212223
  1. <template>
  2. <el-config-provider :locale="locale">
  3. <router-view />
  4. </el-config-provider>
  5. </template>
  6. <script setup>
  7. import { ElConfigProvider } from 'element-plus'
  8. import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
  9. const locale = zhCn
  10. </script>
  11. <style scoped>
  12. .container {
  13. margin: 0;
  14. width: 100vw;
  15. /* height: 100vh; */
  16. height: 1080px;
  17. box-sizing: border-box;
  18. /* background-color: #081732; */
  19. }
  20. </style>