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.
24 lines
568 B
24 lines
568 B
<template>
|
|
<div id="app" style="height: 100%">
|
|
<a-locale-provider :locale="zh_CN">
|
|
<transition name="router-fades" mode="out-in">
|
|
<router-view></router-view>
|
|
</transition>
|
|
</a-locale-provider>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import zh_CN from 'ant-design-vue/lib/locale-provider/zh_CN';
|
|
import 'moment/locale/zh-cn';
|
|
export default {
|
|
name: 'app',
|
|
data() {
|
|
return {
|
|
zh_CN
|
|
}
|
|
},
|
|
watch: {},
|
|
methods: {},
|
|
}
|
|
</script>
|