목록Vue3 (1)
SPRING :: NOTE
[Vue3] error Elements in iteration expect to have 'v-bind:key' directives vue/require-v-for-key
Vue3 튜토리얼 중 다음과 같이 에러가 나타남. 코드: {{ todo.text }} 에러: error Elements in iteration expect to have 'v-bind:key' directives vue/require-v-for-key 해결: v-for를 사용할 시, Key 값이 요구됨 아래와 같이 'v-for'문에 'key'값을 삽입(이 코드에선 i가 key값) {{ todo.text }} - v-for key 값은 {{ i }}
Development Language/WEB
2022. 7. 4. 16:47