From 00a66981f5d914870012cb8a89ebf3371487a5e3 Mon Sep 17 00:00:00 2001 From: Abraham Toriz Date: Fri, 5 Jul 2019 13:51:22 -0400 Subject: [PATCH] add placeholders for the missing style docs --- docs/_sidebar.md | 6 ++++++ docs/component/fill-style.md | 9 +++++++++ docs/component/func-style.md | 9 +++++++++ docs/component/icon-style.md | 9 +++++++++ docs/component/reg-shape-style.md | 9 +++++++++ docs/component/stroke-style.md | 9 +++++++++ docs/component/text-style.md | 9 +++++++++ 7 files changed, 60 insertions(+) create mode 100644 docs/component/fill-style.md create mode 100644 docs/component/func-style.md create mode 100644 docs/component/icon-style.md create mode 100644 docs/component/reg-shape-style.md create mode 100644 docs/component/stroke-style.md create mode 100644 docs/component/text-style.md diff --git a/docs/_sidebar.md b/docs/_sidebar.md index 47cfbb65..7eec3c73 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -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 diff --git a/docs/component/fill-style.md b/docs/component/fill-style.md new file mode 100644 index 00000000..772083dc --- /dev/null +++ b/docs/component/fill-style.md @@ -0,0 +1,9 @@ +# vl-style-fill + +## ES6 Module + +```javascript +import { FillStyle } from 'vuelayers' + +Vue.use(FillStyle) +``` diff --git a/docs/component/func-style.md b/docs/component/func-style.md new file mode 100644 index 00000000..aa292cda --- /dev/null +++ b/docs/component/func-style.md @@ -0,0 +1,9 @@ +# vl-style-func + +## ES6 Module + +```javascript +import { StyleFunc } from 'vuelayers' + +Vue.use(StyleFunc) +``` diff --git a/docs/component/icon-style.md b/docs/component/icon-style.md new file mode 100644 index 00000000..22fde7e6 --- /dev/null +++ b/docs/component/icon-style.md @@ -0,0 +1,9 @@ +# vl-style-icon + +## ES6 Module + +```javascript +import { IconStyle } from 'vuelayers' + +Vue.use(IconStyle) +``` diff --git a/docs/component/reg-shape-style.md b/docs/component/reg-shape-style.md new file mode 100644 index 00000000..5488fbaa --- /dev/null +++ b/docs/component/reg-shape-style.md @@ -0,0 +1,9 @@ +# vl-style-reg-shape + +## ES6 Module + +```javascript +import { RegShapeStyle } from 'vuelayers' + +Vue.use(RegShapeStyle) +``` diff --git a/docs/component/stroke-style.md b/docs/component/stroke-style.md new file mode 100644 index 00000000..34efda0b --- /dev/null +++ b/docs/component/stroke-style.md @@ -0,0 +1,9 @@ +# vl-style-stroke + +## ES6 Module + +```javascript +import { StrokeStyle } from 'vuelayers' + +Vue.use(StrokeStyle) +``` diff --git a/docs/component/text-style.md b/docs/component/text-style.md new file mode 100644 index 00000000..7f1b4514 --- /dev/null +++ b/docs/component/text-style.md @@ -0,0 +1,9 @@ +# vl-style-text + +## ES6 Module + +```javascript +import { TextStyle } from 'vuelayers' + +Vue.use(TextStyle) +```