- Elements in iteration expect to have 'v-bind:key' directives
Vue에서 반복문을 사용하려는데 에러가 발생하였다.
에러 코드가 말해주는 대로 'v-bind:key'를 추가해 주면 된다.
<li v-for="t in tries" v-bind:key="t">
<div>{{t.try}}</div>
<div>{{t.result}}</div>
</li>
- 참고자료
[vue.js] Elements in iteration expect to have 'v-bind:key' directives
[개요] '개발 레시피'라는 유튜브 채널의 Todolist 강좌를 따라 개발을 진행하는 도중 v-for에서 아래와 같은 에러가 발생했습니다. Elements in iteration expect to have 'v-bind:key' directives 강좌에서는 vue CLI
jaimemin.tistory.com