[Vuejs]-How to show value dynamically in vue js wth div

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>

Leave a comment