Skip to content

Commit bda30f5

Browse files
committed
Inital πŸ€πŸš€πŸŽ‰
0 parents  commit bda30f5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+10439
-0
lines changed

β€Ž.browserslistrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1%
2+
last 2 versions
3+
not dead
4+
not ie 11

β€Ž.editorconfig

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true

β€Ž.eslintrc.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: [
7+
'plugin:vue/vue3-essential',
8+
'@vue/standard'
9+
],
10+
parserOptions: {
11+
parser: '@babel/eslint-parser'
12+
},
13+
rules: {
14+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
15+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
16+
},
17+
overrides: [
18+
{
19+
files: [
20+
'**/__tests__/*.{j,t}s?(x)',
21+
'**/tests/unit/**/*.spec.{j,t}s?(x)'
22+
],
23+
env: {
24+
jest: true
25+
}
26+
}
27+
]
28+
}

β€Ž.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?
24+
25+
docs/.vuepress/.cache
26+
docs/.vuepress/.temp

β€ŽREADME.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: 'Vue Google Map UI'
3+
---
4+
5+
## πŸ—Ί Vue Google Maps UI
6+
7+
### Install via npm
8+
9+
```bash
10+
npm install vue-google-maps-ui --save
11+
```
12+
13+
14+
### Install via yarn
15+
16+
```bash
17+
yarn add vue-google-maps-ui
18+
```

β€Žbabel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

β€Ždocs/.vuepress/clientAppEnhance.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineClientAppEnhance } from '@vuepress/client'
2+
//
3+
import GoogleMap from '@/components/GoogleMap.vue'
4+
//
5+
export default defineClientAppEnhance(({ app, router, siteData }) => {
6+
app.component('GoogleMap', GoogleMap)
7+
})

β€Ždocs/.vuepress/config.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
const path = require('path')
2+
3+
module.exports = {
4+
title: 'Vue Google Maps',
5+
base: '/vue-google-maps-ui/',
6+
dest: 'build',
7+
description: 'A Google Map Component for Vue',
8+
head: [['link', { rel: 'icon', href: 'favicon.ico' }]],
9+
themeConfig: {
10+
editLinks: true,
11+
repoLabel: 'GitHub',
12+
repo: 'https://github.com/edisdev/vue-google-maps-ui',
13+
docsRepo: 'https://github.com/edisdev/vue-google-maps-ui',
14+
docsDir: 'docs',
15+
docsBranch: 'main',
16+
contributors: true,
17+
backToTop: true,
18+
sidebar: [
19+
{
20+
link: '/',
21+
text: 'GETTING STARTED',
22+
collapsable: false,
23+
children: [
24+
'/installation/',
25+
'/props/',
26+
'/events/'
27+
]
28+
},
29+
{
30+
text: 'EXAMPLES',
31+
children: ['/examples/']
32+
}
33+
]
34+
},
35+
alias: {
36+
'@': path.resolve('src')
37+
}
38+
}
Loading
2.14 MB
Loading
657 KB
Loading
685 KB
Loading
1.17 MB
Loading
Loading
Loading
2.29 MB
Loading
Loading
3.01 MB
Loading
Loading
Loading
Loading
439 KB
Loading
Loading
Loading
Loading

β€Ždocs/.vuepress/public/favicon.ico

15 KB
Binary file not shown.

β€Ždocs/README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
title: 'Vue Google Map UI'
3+
---
4+
5+
## πŸ—Ί Vue Google Maps UI
6+
7+
### Install via npm
8+
9+
```bash
10+
npm install vue-google-maps-ui --save
11+
```
12+
13+
14+
### Install via yarn
15+
16+
```bash
17+
yarn add vue-google-maps-ui
18+
```

β€Ždocs/events.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: 'Events'
3+
---
4+
5+
## change-address
6+
This event used after every change address.
7+
8+
## update-circle
9+
This event is used after every updating the drawing circles
10+
11+
## update-polygon
12+
This event is used after every updating the drawing polygons
13+
14+
## update-polyline
15+
This event is used after every updating the drawing polylines
16+
17+
## update-rectangle
18+
This event is used after every updating the drawing rectangles
19+
20+
## update-markers
21+
This event is used after every updating the drawing markers

0 commit comments

Comments
Β (0)