<!--
* @Author: Devin
* @Date: 2023-02-01 15:50:31
* @LastEditors: Devin
* @LastEditTime: 2023-02-16 15:13:38
* @Description: grid-demo
-->
<template>
<common-panel :layer="'row'">
<template #left>
<div class="tree">
<common-tree></common-tree>
</div>
</template>
<template #right>
<div class="content">123</div>
</template>
</common-panel>
</template>
<script setup lang="ts"></script>
<style scoped lang="scss">
.tree {
background: #fff;
width: 100%;
height: 100%;
padding: 20px;
box-sizing: border-box;
}
.content {
width: 100%;
height: 100%;
background: #fff;
}
</style>
|