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.
 
 
 
 
 

37 lines
537 B

<template>
<div id="app" class="px-2">
<head-nav class="head-nav" />
<router-view></router-view>
</div>
</template>
<script>
import zh_CN from 'ant-design-vue/lib/locale-provider/zh_CN';
import HeadNav from './components/HeadNav/HeadNav.vue';
export default {
name: 'App',
components: { HeadNav },
data() {
return { zh_CN };
},
methods: {},
};
</script>
<style>
html,
body,
#app {
min-height: 100%;
width: 100%;
}
#app {
background: transparent;
}
body {
background: #f5f5f5 !important;
}
</style>