Giter Club home page Giter Club logo

Comments (4)

julienr-geronimo avatar julienr-geronimo commented on June 2, 2024 2

Hello @tinymachine

On my side I have this

main.js

let g = document.createElement('script') 
g.type = 'text/javascript' 
g.onload = function () { 
    vue.$store.commit('GOOGLE_API_LOADED')
} 
g.src = 'https://maps.googleapis.com/maps/api/js?key=' + ỲOUR_KEY + '&libraries=places' 
g.async = true 
document.body.appendChild(g) 

So as you can see i commit something to the store

this something is :

store.js

export const GOOGLE_API_LOADED = (state) => {
	state.googleApiLoaded = true
}

And then when i used vue-google-autocomplete :

<vue-google-autocomplete v-if="$store.state.googleApiLoaded" id="search">

It may not be the best solution, but it's working :) !

from vue-google-autocomplete.

sidouglas avatar sidouglas commented on June 2, 2024 2

Take a look at: https://stackoverflow.com/questions/1866717/document-createelementscript-adding-two-scripts-with-one-callback/1867135#1867135
You don't need to load it through your store.

from vue-google-autocomplete.

frenchbread avatar frenchbread commented on June 2, 2024

+1

Thanks for sharing links. Current solution is not fully safe since API key is exposed in HTML file..

Update: just figured out that it's exposed in source code on site anyways.

from vue-google-autocomplete.

syakirurahman avatar syakirurahman commented on June 2, 2024

You can take a look at : https://medium.com/@lassiuosukainen/how-to-include-a-script-tag-on-a-vue-component-fe10940af9e8 for more simple solutions.

Just change the url with google maps api url

from vue-google-autocomplete.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.