No text returned on update-items event in Android browsers
My implementation works perfectly except for in Chrome and Firefox on an Android device (Pixel 2). The update-item event is triggered but that text argument is blank. I keep running into this issue even with a basic implementation removing all functionality outside of v-autocomplete. The only place I see it working as expected is within your DEMO. Have you run across this issue in the past? Thank you
Same here :( @sfinneral did you fix this problem ?
Realise this is fairly late.
A workaround I have found is to pass a ref property within the "inputAttrs" prop, e.g.:
inputAttrs:{ref:'autocompleteref'},
Within the callback from the @change event which still fires without a value, I can access the value using nested refs.
Assuming your v-autocomplete component has ref 'autocompletecomponent', I get the input value doing:
this.$refs.autocompletecomponent.$refs.autocompleteref.value