vue-google-autocomplete
vue-google-autocomplete copied to clipboard
MODAL ISSUES
When trying to use auto-complete on modal, cant find the suggested locations
We had similar issue when we used it with Foundation Reveal. Turns out it's because the auto-complete is using position: absolute while Foundation Reveal has position: fixed. Changing the pac-container to position fixed help fixing it :)
Add this style
.pac-container { z-index: 10000 !important; }