You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases I have internal input fields where user might not press enter just blur from the text field or try to submit the form, in that case I want to store the value of that field.
I tried to use blur event and also tried to set v-model for the <vue-google-autocomplete component, but none of this works for me.
<vue-google-autocomplete
ref="address"
id="map"
v-model="address"
classname="md-input"
placeholder="Please type your address"
@placechanged="getAddressData"
@no-results-found="setStreetAddress"
@blur="setStreetAddress"
country="us">
</vue-google-autocomplete>
The text was updated successfully, but these errors were encountered:
In some cases I have internal input fields where user might not press enter just blur from the text field or try to submit the form, in that case I want to store the value of that field.
I tried to use blur event and also tried to set v-model for the <vue-google-autocomplete component, but none of this works for me.
The text was updated successfully, but these errors were encountered: