mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-06 22:55:46 +08:00
13 lines
398 B
Vue
13 lines
398 B
Vue
<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>
|
|
|
|
<script lang="ts" setup name="layoutTransverse">
|
|
import Header from '@/layout/component/header.vue';
|
|
import Main from '@/layout/component/main.vue';
|
|
</script>
|