UNPKG

vue-gmaps

Version:

Vue.js plugin that allow search address and places using Google Maps API

17 lines (13 loc) 276 B
import Vue from 'vue' import App from './App.vue' import VueGmaps from 'vue-gmaps' Vue.use(VueGmaps, { key: 'AIzaSyCpr35b_ZSoP8nbz0VnBjVz6ABb7iurRCU', libraries: ['places'], version: '3' }) /* eslint-disable no-new */ new Vue({ el: '#app', render: h => h(App) })