Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 572 Bytes

README.md

File metadata and controls

43 lines (33 loc) · 572 Bytes

VueGmapsPlaces

Your plugin description...

Installation

1. Install

yarn add vue-google-maps-places
# or
npm i vue-google-maps-places --save

2. Plug-in

import VueGmapsPlaces from 'vue-google-maps-places'

Vue.use(VueGmapsPlaces)

new Vue({
  // your vue config
  $vueGmapsPlacesSettings: new VueGmapsPlaces(),
})

3. Use in your components

<template>
  <vue-google-maps-places />
</template>

<script>
  export default {
    async created() {
      console.log(this.$$vueGmapsPlaces);
    },
  };
</script>

License

MIT