mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-25 07:50:32 +03:00
Improve documentation on WizardStep type definitions, and order props in alignment iwth props declared in WizardStep.vue.
This commit is contained in:
+13
-1
@@ -1,8 +1,20 @@
|
|||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
|
|
||||||
export declare class Step extends Vue {
|
export declare class Step extends Vue {
|
||||||
/** Tab component for the step. This should be usually passed through the `step` scoped slot */
|
/**
|
||||||
|
* Tab component to use for the step. This should be usually passed through the `step` scoped slot.
|
||||||
|
*
|
||||||
|
* Default value: () => {}
|
||||||
|
*/
|
||||||
tab: object
|
tab: object
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default value: ''
|
||||||
|
*/
|
||||||
transition: string
|
transition: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Default value: 0
|
||||||
|
*/
|
||||||
index: number
|
index: number
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user