vue-google-autocomplete
vue-google-autocomplete copied to clipboard
A Vue.js autosuggest component for the Google Places API.
So, I like this component, but I have a problem when I'm clicking enter. I know that I could use "no-results-found", but I get only the whole string.
Is it possible to make it work with Vuetify? There is a Vuetify-autocomplete library, but the guys is not active and it doesn't work well (you can't put more than...
This component works great, but it would be even better if it could work when the Google Maps API script is loaded asynchronously. Right now, if you set the API...
Pretty much all vue input components support `v-model`, both vue-native and third-party components. I think it is very convenient and well-known (among vue users) concept, and I think it would...
prop name ``` ``` ``` inputName: { type: [String, Array], default: 'autocomplete' }, ``` event when input value change ``` onChange(event) { this.$emit('change', this.autocompleteText,event); }, ``` it will help many...
Hi there -- thanks for an excellent component! I incorporated the core `VueGoogleAutocomplete.vue` component into a generic form input field component and discovered a strange conflict (strange to me, anyway...
In `ADDRESS_COMPONENTS` constant, it misses `postal_town: 'long_name'` key / value to support address that haven't `locality` key. For example, this is the value returns by the method `autocomplete.getPlace()` for an...
Is this library working with Vue 3 or is it going to be updated?
https://github.com/olefirenko/vue-google-autocomplete/blob/184a6189a33e4883f08e48ed67b29cefe8e182fa/src/VueGoogleAutocomplete.vue#L185C21-L185C21 Need to change subsequence of emits event Right now is: - .... some events - placechanged - input change Right logic is - ... someevents - input change -...
https://github.com/olefirenko/vue-google-autocomplete/blob/184a6189a33e4883f08e48ed67b29cefe8e182fa/src/VueGoogleAutocomplete.vue#L204 Blur effects whe click on result inside google place selector - wrong behavior need to make exception for source of emit