Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 9ab19be

Browse files
author
Charles Salmon
committed
Improve documentation on WizardStep type definitions, and order props in alignment iwth props declared in WizardStep.vue.
1 parent c412282 commit 9ab19be

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

types/WizardStep.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
import Vue from 'vue'
22

33
export declare class Step extends Vue {
4-
/** Tab component for the step. This should be usually passed through the `step` scoped slot */
4+
/**
5+
* Tab component to use for the step. This should be usually passed through the `step` scoped slot.
6+
*
7+
* Default value: () => {}
8+
*/
59
tab: object
10+
11+
/**
12+
* Default value: ''
13+
*/
614
transition: string
15+
16+
/**
17+
* Default value: 0
18+
*/
719
index: number
820
}

0 commit comments

Comments
 (0)