0👍
If you are running these both on the same page it might have something to do with your :keys
being on the same ID. e.g. set the keys with a prefix
<div v-for="(row, index) in data" v-bind:key="'div-'+row.id">
{{data[index].name}}
</div>
- [Vuejs]-Vue: How to iteratively update properties in props the correct way
- [Vuejs]-Vue.js API Call with Dynamic schema
Source:stackexchange.com