profile picture

1 pages tagged with "vue"

Using Vue Select in Vue 3

October 21, 2022 - 41 words - 1 mins
Just a reminder for me to use vue select for Vue 3 (version ^4.0.0-beta.3). <v-select :options="[{ hello: 'world' }]" :getOptionLabel="(e: any) => e.world" @update:modelValue="handleChangeUser" :value="{ hello: 'world' }" /> s… read more