728x90
li에서 v-for문을 만들던 중 아래와 같은 에러가 뜸
원인
v-for 사용 시 key 값이 요구되므로 필수로 입력해줘야 함.
결과
<li v-for="todoItem in todoItems" v-bind:key="todoItem">
v-bind:key 속성 추가 시 에러 없어짐
'Vue.js' 카테고리의 다른 글
Vue 인스턴스 주요 옵션 (0) | 2022.03.22 |
---|---|
vue.js 기본 directive (0) | 2022.03.22 |
vue-carousel with fraction (0) | 2022.03.21 |
[Error] 'node-sass' version 5.0.0 is incompatible with ^4.0.0 (0) | 2022.01.21 |
[Error] Do not use 'new' for side effects (0) | 2022.01.20 |