[Vuejs]-Vue-konva: removing specific node from stage working incorrectly

0👍

When you are developing an app with vue-konva it is better not to touch Konva nodes manually (there only rare cases when you need it, like updating Konva.Transformer).

You don’t need to call node.destroy() manually. Just an item for your data.

From your demo, I see you are not using key attribute (you are using image.id for that, but it is undefined). It is very important to use keys in such case.

Updated demo: https://codesandbox.io/s/30qpxpx38q

Leave a comment