Files
zyplayer-doc/zyplayer-doc-ui/swagger-ui/src/App.vue
暮光:城中城 b432e9fa17 支持path参数
2021-11-20 21:45:29 +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>