You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
745 B

<!--
*@描述: admin主页构建
*@作者
*@日期 9/27
*@版本1.0
*/
-->
<template>
<a-row>
<a-col :span="3" class="left-com" >
<comLeftMenu></comLeftMenu>
</a-col>
<a-col :span="18" class=" com-setup-center ">
<slot></slot>
</a-col>
<a-col :span="3" class="right-com" ><comRightMenu></comRightMenu></a-col>
</a-row>
</template>
<script setup lang="ts">
import comLeftMenu from './leftMenu/index.vue';
import comRightMenu from './rightMenu/index.vue';
</script>
<style lang="less" scoped>
.com-setup-center {
height: 100vh;
width: 100%;
flex-wrap: nowrap;
}
.left-com,.right-com{
position:relative;
z-index:8;
}
</style>