Current behavior:
I am using cypress to test a Vuetify component V-select.
After cy.get(' ').type('') command, the :search-input.sync="search" method of vue components not triggered.
Desired behavior:
The search method should be triggered after I type some something into the search-input
How to reproduce:
<v-select
label="Async items"
autocomplete
:loading="loading"
dark
multiple
cache-items
chips
required
:items="items"
:rules="[() => select.length > 0 || 'You must choose at least one']"
:search-input.sync="search"
v-model="select"
></v-select>
Current behavior:
I am using cypress to test a Vuetify component V-select.
After
cy.get(' ').type('')command, the:search-input.sync="search"method of vue components not triggered.Desired behavior:
The search method should be triggered after I type some something into the search-input
How to reproduce: