Можете ли вы дать мне пример, как получить данные из API с помощью v-select?
<v-select
:debounce="250"
:on-search="getOptions"
v-validate="'required'"
:data-vv-as="$t('checkout.title')"
:key="`title-${index + 1}`"
:id="`title-${index + 1}`"
:name="`title-${index + 1}`"
:class="{ 'is-danger': errors.has(`title-${index + 1}`) }"
:options="">
</v-select>
![enter image description here](https://i.stack.imgur.com/AU4dK.png)
Спасибо