diff --git a/components/lib/steps/Steps.d.ts b/components/lib/steps/Steps.d.ts index 9c5461334..87e7c8d3b 100755 --- a/components/lib/steps/Steps.d.ts +++ b/components/lib/steps/Steps.d.ts @@ -70,6 +70,10 @@ export interface StepsPassThroughAttributes { * Defines current options in Steps component. */ export interface StepsContext { + /** + * Current menuitem + */ + item: any; /** * Index of the menuitem. */ diff --git a/components/lib/steps/Steps.vue b/components/lib/steps/Steps.vue index fcdac9553..c32c160d3 100755 --- a/components/lib/steps/Steps.vue +++ b/components/lib/steps/Steps.vue @@ -46,6 +46,7 @@ export default { getPTOptions(key, item, index) { return this.ptm(key, { context: { + item, index, active: this.isActive(item), disabled: this.isItemDisabled(item)