I have a problem with array items rerendering. I hope someone can help me with it. There is a code: https://codesandbox.io/s/vuex-store-forked-2qx1g?file=/src/App.vue
We have component with array of items. Template renders only first item from collection. After 2 seconds we change first item title - updated hook is called, seems right After 4 seconds we add new item to array - updated hook is called again. Do I understand correctly that adding items to array will cause rerendering of all previous items?
Or updated hook means that virtual DOM is changed but no real rerendering happens? Anyway, can this situation be a performance issue on a big set of data?