You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
507 B
32 lines
507 B
<script> |
|
import { defineComponent } from 'vue' |
|
import { ElConfigProvider } from 'element-plus' |
|
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs' |
|
|
|
export default defineComponent({ |
|
components: { |
|
ElConfigProvider, |
|
}, |
|
setup() { |
|
return { |
|
locale: zhCn, |
|
} |
|
}, |
|
}) |
|
</script> |
|
|
|
<template> |
|
<el-config-provider :locale="locale"> |
|
<router-view></router-view> |
|
</el-config-provider> |
|
</template> |
|
|
|
<style> |
|
#app { |
|
padding: 0; |
|
margin: 0; |
|
height: 100%; |
|
max-width: 1700px; |
|
} |
|
</style>
|
|
|