vuejs 주요기능1 Vue(version 3) 주요 기능 정리(v-for) #3 vuejs 기능 중 v-for에 대한 기능을 설명합니다. v-for는 반복되는 Element를 구성할 때 자주 사용되는 기능입니다. {{ user.name }} {{ user.email }} interface User { id: string name: string email: string } const UserList = reactive([ { id: 'test1', name: '테스트1', email: 'test1@test.com' }, { id: 'test2', name: '테스트2', email: 'test2@test.com' }, { id: 'test3', name: '테스트3', email: 'test3@test.com' } ]) 위 처럼 template 태그를 사용할 수 있고, 아니면 실제 태.. 2024. 1. 28. 이전 1 다음 반응형