29 lines
447 B
Vue
29 lines
447 B
Vue
|
<template>
|
||
|
<div class="main-content">
|
||
|
<AHeader />
|
||
|
<Main />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AHeader from "../components/layout/Header.vue";
|
||
|
import Main from "../components/layout/Main.vue";
|
||
|
|
||
|
export default {
|
||
|
name: 'MainContent',
|
||
|
components: { AHeader, Main},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.main-content {
|
||
|
width: 1px;
|
||
|
flex: 1;
|
||
|
background: #f001;
|
||
|
}
|
||
|
</style>
|