You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 1, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: docs/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,8 +46,8 @@ components: {
46
46
</tab-content>
47
47
</form-wizard>
48
48
```
49
-
# Props
50
-
## Form Wizard props
49
+
##Props
50
+
###Form Wizard props
51
51
```js
52
52
props: {
53
53
title: {
@@ -112,7 +112,7 @@ props: {
112
112
}
113
113
```
114
114
115
-
## Tab content props
115
+
###Tab content props
116
116
```js
117
117
props: {
118
118
title: {
@@ -136,7 +136,7 @@ props: {
136
136
}
137
137
}
138
138
```
139
-
## Events
139
+
###Events
140
140
Vue-form-wizard emits certain events when certain actions happen inside the component. The events can be noticed in some of the demos and especially in the [async validation demo](https://jsfiddle.net/bt5dhqtf/272/)
141
141
***on-complete** Called when the finish button is clicked and the `before-change` for the last step (if present) was executed. No params are sent together with this event. `this.$emit('on-complete')`
142
142
***on-loading** Called whenever an async `before-change` is executed. This event is emitted before executing `before-change` and after finishing execution of `before-change` method. `on-loading` is emitted together with a Boolean value. `this.$emit('on-loading', value)`
0 commit comments