Skip to content

Commit

Permalink
Merge pull request #191 from categulario/docs/styles
Browse files Browse the repository at this point in the history
add placeholders for the missing style docs
  • Loading branch information
ghettovoice authored Jul 8, 2019
2 parents d3085e4 + 00a6698 commit 6fb0014
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@

* [vl-style-box](/docs/component/style-box.md)
* [vl-style-circle](/docs/component/circle-style.md)
* [vl-style-fill](/docs/component/fill-style.md)
* [vl-style-func](/docs/component/func-style.md)
* [vl-style-icon](/docs/component/icon-style.md)
* [vl-style-reg-shape](/docs/component/reg-shape-style.md)
* [vl-style-stroke](/docs/component/stroke-style.md)
* [vl-style-text](/docs/component/text-style.md)

* Mixins

Expand Down
9 changes: 9 additions & 0 deletions docs/component/fill-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vl-style-fill

## ES6 Module

```javascript
import { FillStyle } from 'vuelayers'

Vue.use(FillStyle)
```
9 changes: 9 additions & 0 deletions docs/component/func-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vl-style-func

## ES6 Module

```javascript
import { StyleFunc } from 'vuelayers'

Vue.use(StyleFunc)
```
9 changes: 9 additions & 0 deletions docs/component/icon-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vl-style-icon

## ES6 Module

```javascript
import { IconStyle } from 'vuelayers'

Vue.use(IconStyle)
```
9 changes: 9 additions & 0 deletions docs/component/reg-shape-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vl-style-reg-shape

## ES6 Module

```javascript
import { RegShapeStyle } from 'vuelayers'

Vue.use(RegShapeStyle)
```
9 changes: 9 additions & 0 deletions docs/component/stroke-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vl-style-stroke

## ES6 Module

```javascript
import { StrokeStyle } from 'vuelayers'

Vue.use(StrokeStyle)
```
9 changes: 9 additions & 0 deletions docs/component/text-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# vl-style-text

## ES6 Module

```javascript
import { TextStyle } from 'vuelayers'

Vue.use(TextStyle)
```

0 comments on commit 6fb0014

Please sign in to comment.