Files
zyplayer-doc/zyplayer-doc-ui/api-ui/src/App.vue
2021-11-26 23:51:14 +08:00

32 lines
588 B
Vue

<template>
<a-config-provider :locale="locale">
<router-view></router-view>
</a-config-provider>
</template>
<script>
import zhCN from 'ant-design-vue/es/locale/zh_CN';
import 'moment/dist/locale/zh-cn';
export default {
name: 'app',
components: {
},
data() {
return {
locale: zhCN,
};
},
methods: {}
}
</script>
<style>
html, body, #app {
height: 100%;
background: #f0f2f5;
}
.ant-btn+.ant-btn{
margin-left: 10px;
}
</style>