2020-12-31 11:47:52 +08:00
|
|
|
<template>
|
|
|
|
<el-container class="layout-container">
|
|
|
|
<Aside />
|
|
|
|
<el-container>
|
|
|
|
<el-scrollbar>
|
2020-12-31 21:10:11 +08:00
|
|
|
<div class="layout-container-header-main">
|
|
|
|
<Header />
|
|
|
|
<Main />
|
|
|
|
</div>
|
2020-12-31 11:47:52 +08:00
|
|
|
</el-scrollbar>
|
|
|
|
</el-container>
|
|
|
|
</el-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Aside from '/@/views/layout/component/aside.vue';
|
|
|
|
import Header from '/@/views/layout/component/header.vue';
|
|
|
|
import Main from '/@/views/layout/component/main.vue';
|
|
|
|
export default {
|
|
|
|
name: 'layoutFashion',
|
|
|
|
components: { Aside, Header, Main }
|
|
|
|
}
|
|
|
|
</script>
|