iview中tree组件中删除某个节点的代码,求解释一下获得parent的写法。。
remove (root, node, data) { const parentKey = root.find(el => el === node).parent; const parent = root.find(el => el.nodeKey === parentKey).node; const index = parent.children.indexOf(data); parent.children.splice(index, 1); }
慕村9548890
相关分类