Using vue-select I'm searching for a way to add a delay on input so that a ajax-search-request is send after the user has paused the input for e.g. 500ms.
How can I archive this? In the documentation I can't find any option for that.
In my solution I have a custom ajax-filter:
<vSelect
class="my-select"
@search="fetchOptions"
:filterable="false"
:options="options"
label="name"
v-model="selectedVal"
:disabled="disabled"
:reduce="(result) => result.id"
>