index
-
lwc for:each 에서 index 활용하는 방법 - How to use index in lwc for:eachLWC 2024. 3. 27. 22:42
1. LWC 반복문 2. 추가 3. 반복되는 행에 index 및 event 부여 data-index={인덱스} onclick = {이벤트} {pli.Name} {pli.UnitPrice} 4. event로 부여한 index 가져오기 및 활용 index 체크 -> const index = event.target.dataset.index; index 활용 -> this.리스트[index]; //js파일 addOrderList(event){ const index = event.target.dataset.index; co..