2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-19 04:30: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:
Charles Salmon
2019-02-28 12:13:47 +13:00
parent c41228292a
commit 9ab19be70f
+13 -1
View File
@@ -1,8 +1,20 @@
import Vue from '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
/**
* Default value: ''
*/
transition: string
/**
* Default value: 0
*/
index: number
}