vue递归组件的增删改

export default { components:{ Tree,//注册组件 }, data(){ return { //递归组件的数据 list:[{ data:'数据1', open:true, id:1, children:[{ data:'数据1-1', open:true, id:2, children:[{ data:'数据1-1-1', open:true, id:3, }] },{ data:'数据1-2', open:true, id:4 }] },{ data:'数据2', open:true, id:5, children:[{ data:'数据2-1', open:true, id:6 },{ data:'数据2-2', open:true, id:7 }] },{ data:'数据3', open:true, id:8 }] } } }

在tree.vue中渲染树形结构,并做相应的逻辑
```

    推荐阅读