Configure Strict Mode in vue-konva
masterBy default, vue-konva operates in non-strict mode. In this mode, vue-konva only updates properties that have changed in the config prop. This allows manual changes (like drag-and-drop) to persist without being immediately overwritten by the prop value.
In strict mode, vue-konva forces all node properties to match the values provided in the config prop, regardless of whether they changed.
To enable strict mode for a specific component, add the __useStrictMode attribute:
<v-rect :config="{}" __useStrictMode></v-rect>