[Vuejs]-Vuetify list-item-group, an Array in value prop of list-item?

0👍

Try like this:

 <v-list-item
    v-for="(item, i) in ['First', 'Second']"
    :key="i"
 >

Leave a comment