A dilemma I'm facing is with a page that has a <v-text-field>
containing GoogleMaps autocomplete. The problem arises when Vuetify clears the input once an address is selected by the user.
I have discovered that this complication is connected to the input's blur
event.
Any thoughts on how to resolve this issue and retain the address in the input?
You can witness the trouble firsthand through this Codepen example: https://codepen.io/jfmachado01/full/YRMpVL/
<v-text-field
id="autocomplete"
prepend-icon="place"
placeholder="Address"
>
Furthermore, here's a peek at the issue in action: Disabling the javascript blur event