v-memo in v-for, only memoize until the first changed item
Vue version
3.4.15
Link to minimal reproduction
Steps to reproduce
Create an element with v-for and v-memo (like the example in the documentation). Then modify or remote one element. This element is updated and all the following elements too, it is not correct. If you have 1000 rows and try to remove he second row, then update all the 998 folloing components
What is expected?
Vue should delete (or update) only the deleted element and not update any of the following elements
What is actually happening?
Vue is updating the modified element and following too.
System Info
No response
Any additional comments?
No response