Changing e.g. the selection of a node is not reflected in the tree itself because it copies the node.
Because of that single properties like isSelected loose their reactivity.
My tree is bound to the store. But I cannot change the status of a leave by changing the store. I have to replace the whole node to make it work. That doesnt feel right somehow...
Changing e.g. the selection of a node is not reflected in the tree itself because it copies the node. Because of that single properties like
isSelected
loose their reactivity. My tree is bound to the store. But I cannot change the status of a leave by changing the store. I have to replace the whole node to make it work. That doesnt feel right somehow...