Initial commit

This commit is contained in:
Fawad Mirzad
2020-10-16 16:44:19 +02:00
commit 8e0792b9d9
11 changed files with 412 additions and 0 deletions

16
index.js Normal file
View File

@@ -0,0 +1,16 @@
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)
}
}