phphe / vue-draggable-nested-tree

Vue2 draggable tree component
https://hetree.phphe.com/
MIT License
344 stars 62 forks source link

Remove parent node, keep children #78

Closed ben-roth closed 5 years ago

ben-roth commented 5 years ago

Is there a way to delete a parent node but keep all the children? If the parent is deleted I'd expect that the children just rise up 1 level.

phphe commented 5 years ago

node.parent.children.push(...node.children)

ben-roth commented 5 years ago

sweet thank you!