hi-ucs/front/src/App.vue

37 lines
719 B
Vue
Raw Normal View History

2022-06-14 09:32:49 +08:00
<!--
* @Author: hisense.wuhongjian
* @Date: 2022-05-06 11:12:00
2022-06-21 17:06:05 +08:00
* @LastEditors: hisense.wuhongjian
* @LastEditTime: 2022-06-21 16:59:46
2022-06-14 09:32:49 +08:00
* @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';
2022-06-21 17:06:05 +08:00
#vue-admin-beautiful{
max-width: 1920px;
2022-07-06 18:42:23 +08:00
// max-height: 1080px;
2022-06-21 17:06:05 +08:00
margin: auto;
height: 100%;
position: relative;
}
2022-06-14 09:32:49 +08:00
</style>