Update App.vue

汉化
This commit is contained in:
hdtopku 2021-02-15 15:19:41 +08:00 committed by GitHub
parent 0679dc343b
commit 525ae62418
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,24 @@
<template>
<router-view />
<div id="vue-admin-beautiful">
<a-config-provider :locale="zh_CN">
<router-view />
</a-config-provider>
</div>
</template>
<script>
import zh_CN from 'ant-design-vue/lib/locale-provider/zh_CN'
import moment from 'moment'
import 'moment/locale/zh-cn'
moment.locale('zh-cn')
export default {
name: 'App',
data() {
return {
zh_CN,
}
},
}
</script>
<style lang="less">
@import '~@/vab/styles/vab.less';
</style>