vue-tree icon indicating copy to clipboard operation
vue-tree copied to clipboard

初始设置某个节点selected为true。当设置树为Radio时,选择其他节点该状态不会改变。

Open Stallezhou opened this issue 5 years ago • 2 comments

Stallezhou avatar May 21 '19 08:05 Stallezhou

在选择其他节点的时候,可以自己用代码清理一下。

let selecNodes = this.$refs.tree.getSelectedNodes(true); selecNodes.forEach((cnode) => { if(crtNode.subId != cnode.subId){ cnode.selected = false; } });

firebear-ssl avatar Jul 24 '19 02:07 firebear-ssl

非常感谢您提供的参考,我的问题这边已经解决了。非常感谢。

Stallezhou avatar Jul 26 '19 03:07 Stallezhou