profile picture

Using Vue Select in Vue 3

October 21, 2022 - programming frontend vue

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' }"
/>

since docs is still scarce.