관리 메뉴

프론트엔드 정복하기

v-for문에서 v-bind 오류 본문

Vue/Vue error & Solution

v-for문에서 v-bind 오류

GROWNFRESH 2020. 10. 26. 15:52

에러 메세지 : 

Elements in iteration expect to have 'v-bind:key' directives  vue/require-v-for-key

v-for 디렉티브에는 v-bind:key를 추가해야 한다.

 

 

 

에러 원인 : 

vue 2.2.0 이상의 버전에서는 v-for 속성을 사용할 때 key 속성값이 필수로 동반되어야 한다.

 

<li v-for="(item, index) in todoItems" v-bind:key="index">{{item}}</li>

또는

<li v-for="(item, index) in todoItems" :key="index">{{item}}</li>