<template>
<div class="distribution-container">
<div>
<create-container :data="data" />
</div>
<div>
<container :data="data" />
</div>
</div>
</template>
<script lang="ts" setup>
import CreateContainer from '@/components/distribution/create-container/index.vue';
import Container from '@/components/distribution/container/index.vue';
import { reactive } from 'vue';
const data = reactive([
{
label: '第一层',
type: '1',
childrenType: '2',
children: [
{
label: '第一组',
type: '2',
},
{
label: '第二组',
type: '2',
},
{
label: '第三组',
type: '2',
},
{
label: '第四组',
type: '2',
},
],
},
{
label: '第一层',
type: '1',
children: [],
},
{
label: '第一层',
type: '1',
children: [],
},
{
label: '第一层',
type: '1',
children: [],
},
]);
</script>
<style lang="less">
.distribution-container {
display: flex;
}
</style>
想不通的一零
- 粉丝: 4
- 资源: 1
会员权益专享
最新资源
- 流程挖掘算法解析及汇总
- svm预测.rarsvm预测.rar
- 功能强大的城南图书馆系统源码.zip
- DC_openloop.slx
- NASA对于晶须的研究报告-电子从业者使用指南
- grade 6 scope sequence reading wonders.pdf
- grade 5 scope sequence reading wonders.pdf
- grade 4 scope sequence reading wonders.pdf
- grade 3 scope sequence reading wonders.pdf
- grade 2 scope sequence reading wonders.pdf
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


