[Vuejs]-V-select multiple not setting value

0๐Ÿ‘

i am guessing its a reactivity issue.
try this.$set(this.customer, 'fname', customer.first_name)
checkout their docs on reactivity

0๐Ÿ‘

If youโ€™re using Vuetify v-select, you need to use :items instead of :options

   <v-select
      multiple
      :searchable="false"
      label="phone"
      :disabled="appointment.phone_in_notes"
      :no-drop="true"
      :items="customerPhones"
      :value="customerPhones"
    ></v-select>

Leave a comment