vue自定义树状结构图的实现方法

vue 实现自定义树状结构图

  • 可动态添加、删除
  • 可整体拖拽
  • 如需内容也为动态,把组件内容使用input、select等组件替换
  • 数据结构
 treeData: [{
  name: '1',
  child: [
   { name: '2',
   child: [{ name: '1' }, { name: '2' }]
   },
   { name: '1',
   child: [{ name: '1' }, { name: '2' }]
   }
  ]
 }]

vue自定义树状结构图的实现方法_第1张图片

思路:

1、先写好一个公共的组件TreeItem

vue自定义树状结构图的实现方法_第2张图片

vue自定义树状结构图的实现方法_第3张图片

2、加上条件判断

vue自定义树状结构图的实现方法_第4张图片

3、然后递归调用自身组件

vue自定义树状结构图的实现方法_第5张图片

4、最后直接调用组件就完成了

gitHub地址链接 https://github.com/hellozdq/customTree

总结

到此这篇关于vue自定义树状结构图实现的文章就介绍到这了,更多相关vue自定义树状结构图内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(vue自定义树状结构图的实现方法)