Vuetify Version: 2.0.13
Vue Version: 2.6.10
Browsers: Chrome 76.0.3809.132
OS: Android 9, Windows
gamGamingGaminggam is clearedGaminggam remains in the text inputI posted this clip on Discord channel
https://cdn.discordapp.com/attachments/340215499398840331/616102819417554988/Screen_Recording_2019-08-28_at_10.50.40_AM.mov
I posted this clip on Discord channel
https://cdn.discordapp.com/attachments/340215499398840331/616102819417554988/Screen_Recording_2019-08-28_at_10.50.40_AM.mov
Thanks, but for me it's a different bug, i filled another issue here: https://github.com/vuetifyjs/vuetify/issues/8841
Found workaround on this
...
<VCombobox
...
// Add these 2 attributes into the component
:search-input.sync="searchInput"
@change="searchInput = ''"
>
</VCombobox>
...
data() {
return {
...
searchInput: "",
}
}
Thanks @wannfq, it works for both #8842 and #8841 (codepen)
According to this test, internalSearch should not be cleared. VCombobox is inherited from the VAutocomplete. Should their behavior be different in this regard?
https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VAutocomplete/__tests__/VAutocomplete2.spec.ts#L395
The workaround proposed by @wannfq does not work anymore for vuetify 2.1, is there an other workaround to fix it?
Duplicate of #6459
If you have any additional questions, please reach out to us in our Discord community.
Related w/ workaround: #6842
I can agree with that assessment. It would have to be introduced in a minor though.