[Vuejs]-How to add group icon using v-for?

1👍

✅

You need to bind the data with ‘:’

:prepend-icon=“item.icon”

Also, your keys are not unique which is poor form. It would be better to use

:key=“item.text”

Thus avoiding duplicate keys. Or change your ‘subgroupItems.id’ to numbers that do not match the ids from ‘groupItems’

đŸ‘€Tim

Leave a comment