折叠element tree所有节点

下载中心做了个书签,点击书签对列表进行展开,如果是最后一级,直接打开列表内容。需要在展开对应书签时对已展开的列表进行收缩,直接贴出代码

// tree为Tree组件的ref值
     for(let i=0;i<this.$refs.tree.store._getAllNodes().length;i++){
       this.$refs.tree.store._getAllNodes()[i].expanded=false;
     }
       

你可能感兴趣的:(折叠element tree所有节点)