[Vuejs]-How to enable or disable a button while the user is typing in Vue Ui-select

0👍

input is emitted only when you select an option. You should listen for query-change instead:

<ui-select 
    v-model="groupName"
    has-search
    @query-change="checkEvent"
    @input="checkEvent()"
></ui-select>

Leave a comment