30 lines
582 B
Vue
30 lines
582 B
Vue
|
<!--
|
||
|
* @Author: hisense.wuhongjian
|
||
|
* @Date: 2022-05-06 11:12:00
|
||
|
* @LastEditors: hisense.liangjunhua
|
||
|
* @LastEditTime: 2022-06-13 17:45:49
|
||
|
* @Description: 告诉大家这是什么
|
||
|
-->
|
||
|
<template>
|
||
|
<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>
|