0👍
✅
Add a unique key
value to your v-for
loop element:
<div-for="(row, index) in rows" :key="JSON.stringify(row)">
This should make sure the correct element is removed from the DOM.
Source:stackexchange.com