App.vue 521 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div id="appvue">
  3. <el-config-provider :locale="zhCn">
  4. <RouterView />
  5. </el-config-provider>
  6. </div>
  7. </template>
  8. <script setup>
  9. import { RouterView } from 'vue-router'
  10. import { ElConfigProvider } from "element-plus"
  11. import zhCn from "element-plus/lib/locale/lang/zh-cn"
  12. </script>
  13. <style>
  14. #appvue {
  15. font-family: Avenir, Helvetica, Arial, sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. -moz-osx-font-smoothing: grayscale;
  18. text-align: center;
  19. width: 100%;
  20. height: 100%;
  21. }
  22. </style>