Fetch select options on first character
Learn how to load options only when a character is entered.
Sometimes we don't want to load our option list instantly, only when a user types one (or more) characters.
We can achieve this by disabling resolveOnLoad
and adding minChars
with delay
:
vue
<SelectElement
name="select"
items="/users"
:resolve-on-load="false"
:min-chars="1"
:delay="300"
/>
We can do the same for MultiselectElement
and TagsElement
.