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
501 B
37 lines
501 B
<template>
|
|
<div>
|
|
<Header ref="headerChild"></Header>
|
|
<div class="body">
|
|
<router-view @UserConsole="UserConsole"/>
|
|
</div>
|
|
<Footer/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Header from './Header.vue';
|
|
import Footer from './Footer.vue';
|
|
export default {
|
|
data(){
|
|
return{
|
|
|
|
}
|
|
},
|
|
components:{
|
|
Header,Footer
|
|
},
|
|
methods:{
|
|
UserConsole(){
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
body{
|
|
margin: 0;
|
|
}
|
|
.body{
|
|
width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
|