swagger文档管理改为API接口文档管理
This commit is contained in:
31
zyplayer-doc-ui/api-ui/src/App.vue
Normal file
31
zyplayer-doc-ui/api-ui/src/App.vue
Normal file
@@ -0,0 +1,31 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user