首页 > 其他 > 详细

手动设置el-tree展开与收起

时间:2020-07-28 18:03:53      阅读:837      评论:0      收藏:0      [点我收藏+]
<el-tree
              :data="projectTree"
              :check-strictly="relationParent"
              show-checkbox
              default-expand-all
              node-key="id"
              ref="ProjectTree"
              highlight-current
              :props="defaultProps"
              :filter-node-method="filterNode"
            >
            </el-tree>

expandAll(bool) {
      var nodes = this.$refs.ProjectTree.store.nodesMap;
      for (var i in nodes) {
        nodes[i].expanded = bool;
      }
    }

  

手动设置el-tree展开与收起

原文:https://www.cnblogs.com/tw6668/p/13391290.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!