App.vue 307 B

123456789101112131415
  1. <template>
  2. <div style="overflow: hidden; width: 100%; height: 100%;">
  3. <el-config-provider :locale="zhCn">
  4. <router-view/>
  5. </el-config-provider>
  6. </div>
  7. </template>
  8. <script setup lang="ts">
  9. import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
  10. </script>
  11. <style lang="scss" scoped>
  12. </style>