[Vuejs]-VueJS – v-for and attributes on the parent Element

4👍

With Vue 2 you don’t use interpolation in attributes, you use the attribute binding syntax.

<tr v-for="detailItem in itemList" v-bind:data-key="detailItem.pk">

Or the shortcut

<tr v-for="detailItem in itemList" :data-key="detailItem.pk">
👤Bert

Leave a comment