iamstevendao / vue-tel-input

International Telephone Input with Vue
https://iamstevendao.com/vue-tel-input/
MIT License
816 stars 342 forks source link

SearchBox Input on Android device is not update a country list dynamically #403

Open mikhailkushkov opened 1 year ago

mikhailkushkov commented 1 year ago

If i try to search a country on a android devices(galaxy tab etc.), a country-list is not filtering according to searchbox value, it just show me a suggested words, till i chose a suggestion, it doesn't filter.

https://github.com/iamstevendao/vue-tel-input/assets/19332522/9e4d548e-0e03-449c-9fb1-9b02ae1f5c08

mikhailkushkov commented 1 year ago

this is my code:

<vue-tel-input ref="telInput" v-model="telephone" v-model:defaultCountry="defaultCountry" name="telephone" required type="tel" class="input-wrapperinput input-wrapperinput--flex input-wrapper__input--dropdown-position" @blur="debouncedInputValidate" @input="(e) => {debouncedInputValidate($emit('update:modelValue', e.target.value))}" :class="{ 'invalid-input': errorObj.telephone }" v-bind="bindProps" @change="onCountryChanged" @open="onDropdownOpen"