I'm using vue-select (https://vue-select.org/). By default it returns all results that includes the searching text. I only want to display results that starts with the entered text. Is there an option to change it? For example
options:
[
'abc',
'cba',
'avx',
'bca'
]
searching text:
'a'
results:
[
'abc',
'avx'
]
So I want to make sth like this: Select value only with letter is starting letter in autocomplete datalist