0๐
i am guessing its a reactivity issue.
try this.$set(this.customer, 'fname', customer.first_name)
checkout their docs on reactivity
- [Vuejs]-Change ownership of Vue Component
- [Vuejs]-Error: Module build failed (from ./node_modules/babel-loader/lib/index.js): SyntaxError:
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>
Source:stackexchange.com