30 lines
438 B
Vue
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> |