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);
}
添加回答
举报
0/150
提交
取消