Files
mayfly-go/mayfly_go_web/src/layout/main/transverse.vue

13 lines
398 B
Vue
Raw Normal View History

<template>
<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>
</template>
2023-12-13 17:32:17 +08:00
<script lang="ts" setup name="layoutTransverse">
2023-09-26 17:38:52 +08:00
import Header from '@/layout/component/header.vue';
import Main from '@/layout/component/main.vue';
</script>