2021-01-10 23:59:43 +08:00
|
|
|
<template>
|
2021-03-15 12:44:58 +08:00
|
|
|
<el-container class="layout-container flex-center layout-backtop">
|
|
|
|
<Header />
|
|
|
|
<Main />
|
|
|
|
<el-backtop target=".layout-backtop .el-main .el-scrollbar__wrap"></el-backtop>
|
|
|
|
</el-container>
|
2021-01-10 23:59:43 +08:00
|
|
|
</template>
|
|
|
|
|
2021-04-13 15:58:58 +08:00
|
|
|
<script lang="ts">
|
2021-01-10 23:59:43 +08:00
|
|
|
import Header from '/@/views/layout/component/header.vue';
|
|
|
|
import Main from '/@/views/layout/component/main.vue';
|
|
|
|
export default {
|
2021-03-15 12:44:58 +08:00
|
|
|
name: 'layoutTransverse',
|
|
|
|
components: { Header, Main },
|
|
|
|
};
|
|
|
|
</script>
|