[Vuejs]-How to access bound key of Vue.js list item?

0👍

you can use it inside your component the same way you assigned it because its a prop of your item, just type

 const key = item.someProp;
👤Wissa

Leave a comment