# Tree 树形菜单
喜剧
动作
爱情
<template>
<div>
<MantTree
:data="treeData"
/>
</div>
</template>
<script>
export default {
data() {
return {
treeData: [
{
id: "1",
title: "喜剧",
children: [
{
id: "1-1",
title: "瑞克和莫蒂 第五季",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
},
{
id: "1-2",
title: "爱,死亡和机器人",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
},
{
id: "1-3",
title: "猫和老鼠",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
}
]
},
{
id: "2",
title: "动作",
children: [
{
id: "2-1",
title: "成龙历险记 第一季",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
},
{
id: "2-2",
title: "星球大战:幻境",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
},
{
id: "2-3",
title: "中华小子",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
}
]
},
{
id: "3",
title: "爱情",
children: [
{
id: "3-1",
title: "查理·布朗恋爱了",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
},
{
id: "3-2",
title: "魔法俏佳人 第二季",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
},
{
id: "3-3",
title: "茜茜公主",
children: [
{ id: "1-1-1" , title: "第一集" },
{ id: "1-1-2" , title: "第二集" },
{ id: "1-1-3" , title: "第三集" },
]
}
]
}
]
}
}
}
</script>
Expand Copy Copy
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
data | 数据 | Array | [] |
draggable | 是否可拖拽 | Boolean | false |
properties | 树形结构的属性 | { id: String, title: String, parent_id: String }: Object | false |