mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-01 20:26:39 +08:00
14 lines
417 B
Vue
14 lines
417 B
Vue
<template>
|
|
<el-container class="layout-container layout-backtop !flex-col">
|
|
<Header />
|
|
<Main />
|
|
</el-container>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="layoutTransverse">
|
|
import { defineAsyncComponent } from 'vue';
|
|
|
|
const Main = defineAsyncComponent(() => import('@/layout/component/main.vue'));
|
|
const Header = defineAsyncComponent(() => import('@/layout/component/header.vue'));
|
|
</script>
|