mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +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>
 |