From fa4baf3541a1792ef7b077ff3dc90fb985004ff1 Mon Sep 17 00:00:00 2001 From: Michael Tintiuc Date: Thu, 28 Feb 2019 16:49:10 +0200 Subject: [PATCH] docs(usage): add alert and action-sheet vue docs (#17199) --- core/src/components/action-sheet/readme.md | 64 +++++ core/src/components/action-sheet/usage/vue.md | 60 +++++ core/src/components/alert/readme.md | 251 ++++++++++++++++++ core/src/components/alert/usage/vue.md | 247 +++++++++++++++++ 4 files changed, 622 insertions(+) create mode 100644 core/src/components/action-sheet/usage/vue.md create mode 100644 core/src/components/alert/usage/vue.md diff --git a/core/src/components/action-sheet/readme.md b/core/src/components/action-sheet/readme.md index 1be4437998..fd287cd570 100644 --- a/core/src/components/action-sheet/readme.md +++ b/core/src/components/action-sheet/readme.md @@ -190,6 +190,70 @@ export default class ActionSheetExample extends Component { ``` +### Vue + +```vue + + + +``` + + ## Properties diff --git a/core/src/components/action-sheet/usage/vue.md b/core/src/components/action-sheet/usage/vue.md new file mode 100644 index 0000000000..65555c69d3 --- /dev/null +++ b/core/src/components/action-sheet/usage/vue.md @@ -0,0 +1,60 @@ +```vue + + + +``` diff --git a/core/src/components/alert/readme.md b/core/src/components/alert/readme.md index 788a357318..ef15639751 100644 --- a/core/src/components/alert/readme.md +++ b/core/src/components/alert/readme.md @@ -801,6 +801,257 @@ export default class AlertExample extends Component { ``` +### Vue + +```vue + + + +``` + + ## Properties diff --git a/core/src/components/alert/usage/vue.md b/core/src/components/alert/usage/vue.md new file mode 100644 index 0000000000..b8283ec380 --- /dev/null +++ b/core/src/components/alert/usage/vue.md @@ -0,0 +1,247 @@ +```vue + + + +```