Your plugin description...
yarn add vue-google-maps-places
# or
npm i vue-google-maps-places --save
import VueGmapsPlaces from 'vue-google-maps-places'
Vue.use(VueGmapsPlaces)
new Vue({
// your vue config
$vueGmapsPlacesSettings: new VueGmapsPlaces(),
})
<template>
<vue-google-maps-places />
</template>
<script>
export default {
async created() {
console.log(this.$$vueGmapsPlaces);
},
};
</script>
MIT