[Vuejs]-I'm using vuetify and want to render array of objects inside a array of object in a drop down button

0👍

I am not 100% sure that this is what you are looking for, but this should work.

 <v-overflow-btn
  v-for="(domain, index) in listofSubdomains.subdomain" :key="index"
  class="my-2"
  v-model='itemSelectSubDomain'
  :item-text="domain.name"
  :item-value="domain.name"
  label="Overflow Btn"
  target="#dropdown-example">
</v-overflow-btn>

Good Luck

Leave a comment