el-tree如何拿到所有节点,以及如何控制收起所有节点?
取所有节点:this.$refs...root.childeNodes
收起节点:expanded = false
收起全部节点思路
将所有节点的expanded设置为false即可。
实例
html
<el-tree
ref="myTree"
...
></el-tree>
js
for (let node of this.$refs.myTree.root.childeNodes){
node.expanded = false
}