Merge pull request #144 from hdtopku/patch-1

Update App.vue
This commit is contained in:
good luck 2021-02-15 22:34:55 -06:00 committed by GitHub
commit ef613e4bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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