개발일기 정답찾기

Vue js 에러 해결 require-v-for-key - 유딩동 Tistory 본문

IT/javascript

Vue js 에러 해결 require-v-for-key - 유딩동 Tistory

유딩동 2022. 4. 24. 13:58

 

안녕하세요, 유딩동입니다.

vue js 예제 실습을 하던 중 다음과 같은 에러가 발생 했습니다.

[vue/require-v-for-key]
Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue
 

웹에서는 다음과 같이 뜨더라구요 

 

해결방법
v-bind:key 추가!

 

해결 되었습니다!

 

참고한 문서

https://github.com/vuejs/vetur/issues/261

 

'v-for' directives require 'v-bind:key' directives. · Issue #261 · vuejs/vetur

Platform: win10 Vetur version: 0.8.3 VSCode version: 1.13.1 'v-for' directives require 'v-bind:key' directives when I use <li class="item-right" v-for="n in 19&quo...

github.com

 

Comments