zhgdyun/src/components/layout_noMenu.vue
2022-06-08 14:51:11 +08:00

30 lines
438 B
Vue

<template>
<div class="fullHeight">
<vhead :showR="true"></vhead>
<div class="pageContainer">
<div class="pageDataContainer">
<router-view></router-view>
</div>
</div>
</div>
</template>
<script>
import vhead from './header'
export default {
components:{vhead},
data() {
return {
};
},
mounted(){
},
methods: {
},
};
</script>
<style lang="less" scoped>
</style>