【Vue.js】v-forの注意点
v-forは:keyもともに使おう
<ul> <div v-for="fruit in fruits" :key="fruit"> <p>{{fruit}}</p> <input type="text"> </div> </ul>
- タグ:
- Vue.js