I am currently utilizing vue-search-select to enable autocomplete on a select field. I am now interested in retrieving the input entered by the user for searching from the select field. I attempted using the keyup event without success. Is there another method to retrieve the user's input?
<model-list-select
:list="activity_list"
v-model="business_activity"
option-value="id"
:custom-text="optiontext"
@input="onChange($event)"
@keyup="keyhandle($event)"
>
</model-list-select>