From 577eb6f3bf62d1b4c7d68cd8ae8bcd90dd745aec Mon Sep 17 00:00:00 2001 From: cristijora Date: Mon, 11 Sep 2017 19:05:37 +0300 Subject: [PATCH] #41, #42 Add jsfiddle examples for generating steps with `component` Add vuelidate example --- README.md | 2 ++ docs/README.md | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index 8fedff5..1e6451b 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ Other demos: * [Call a function before tab switch](https://jsfiddle.net/bt5dhqtf/105/) * [Complete form example](https://jsfiddle.net/CristiJ/bt5dhqtf/286/) integrated with [vue-form-generator](https://github.com/icebob/vue-form-generator) * [Element UI form integration](https://jsfiddle.net/bt5dhqtf/409/) +* [Vuelidate integration](https://jsfiddle.net/CristiJ/bt5dhqtf/1119/) +* [Dynamic components for tabs](https://jsfiddle.net/bt5dhqtf/973/) * [Vue router integration](https://jsfiddle.net/bt5dhqtf/267/) You can place a `router-view` inside the wizard and have a separate page per tab. A `route` prop must be passed to the tabs you want to handle certain tabs * [Async validation with error message](https://jsfiddle.net/CristiJ/bt5dhqtf/298/) `before-change` prop can accept a promise that is resolved with `true` which will execute the promise before switching to another step/tab (NOTE: This feature is not present in the npm package yet) diff --git a/docs/README.md b/docs/README.md index b094e5a..5069822 100644 --- a/docs/README.md +++ b/docs/README.md @@ -234,6 +234,8 @@ Other demos: * [Call a function before tab switch](https://jsfiddle.net/bt5dhqtf/105/) * [Complete form example](https://jsfiddle.net/CristiJ/bt5dhqtf/286/) integrated with [vue-form-generator](https://github.com/icebob/vue-form-generator) * [Element UI form integration](https://jsfiddle.net/bt5dhqtf/409/) +* [Vuelidate integration](https://jsfiddle.net/CristiJ/bt5dhqtf/1119/) +* [Dynamic components for tabs](https://jsfiddle.net/bt5dhqtf/973/) * [Vue router integration](https://jsfiddle.net/bt5dhqtf/267/) You can place a `router-view` inside the wizard and have a separate page per tab. A `route` prop must be passed to the tabs you want to handle certain tabs * [Async validation with error message](https://jsfiddle.net/CristiJ/bt5dhqtf/298/) `before-change` prop can accept a promise that is resolved with `true` which will execute the promise before switching to another step/tab (NOTE: This feature is not present in the npm package yet) * [Customized buttons with scoped slot](https://jsfiddle.net/bt5dhqtf/717/)