phphe/vue-draggable-nested-tree

Disable nesting for specific tree

ben-roth opened this issue · 4 comments

I have 2 trees, I want to disable nesting in one tree so that I can't nest any children but I want to be able to keep nesting working in the other tree. Is there a way I can do this by tree? Thank you!

phphe commented

make the data not nested, then the tree will not be nested. If you just want the tree with nesting data looks not nested, pass tree prop indent 0

<Tree :indent="0">

make the data not nested

I understand that, but when dragging nodes around, they can easily "nest" even if they look like they are not nested by using indent="0" that will still nest the data no? Or will indent="0" prevent drag nesting?

phphe commented

set all node 'droppable=false'

Thanks!