Files
vue-google-maps-community-fork/index.js
Fawad Mirzad 8e0792b9d9 Initial commit
2020-10-16 16:44:19 +02:00

16 lines
531 B
JavaScript

import GoogleMap from './components/Map'
import Marker from './components/Marker'
import Circle from './components/Circle'
import Polygon from './components/Polygon'
import Rectangle from './components/Rectangle'
export default {
install: (app, options) => {
app.component('GoogleMap', GoogleMap)
app.component('Marker', Marker)
app.component('Circle', Circle)
app.component('Polygon', Polygon)
app.component('Rectangle', Rectangle)
app.provide('apiKey', options.apiKey)
}
}