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
Need to change subsequence of emits event
Right now is:
.... some events
placechanged
input change
Right logic is
... someevents
input change
placechanged
Look at there:
If some body wants to validate input of autocomplete - he wants to have a point to get a value of vuegoogleautocomplete
that can make with @inputChange - to have fixed a valid selected data from autocomplete (not typed) wee need to use placechanged from your Readme.md. But on the moment exec the placechanged event we don't have a valid data input from selected result - because that inputChange was fired after placechanged. @olefirenko can you some suggest with that?
The text was updated successfully, but these errors were encountered:
https://github.com/olefirenko/vue-google-autocomplete/blob/184a6189a33e4883f08e48ed67b29cefe8e182fa/src/VueGoogleAutocomplete.vue#L185C21-L185C21
Need to change subsequence of emits event
Right now is:
Right logic is
Look at there:
If some body wants to validate input of autocomplete - he wants to have a point to get a value of vuegoogleautocomplete
that can make with
@inputChange
- to have fixed a valid selected data from autocomplete (not typed) wee need to use placechanged from your Readme.md. But on the moment exec theplacechanged
event we don't have a valid data input from selected result - because that inputChange was fired after placechanged.@olefirenko can you some suggest with that?
The text was updated successfully, but these errors were encountered: