Vuejs Vuetify how to access properties of object in v-select

Your category has name attribute, you can pass to item-text:

<v-select
  :items="categories"
  v-model="category"
  name="category"
  v-validate="'required'"
  item-text="name"
  label="Select a category"
/>

Leave a Comment