diff --git a/components/lib/steps/Steps.d.ts b/components/lib/steps/Steps.d.ts index 7b9a2fbb0..efbc1792f 100755 --- a/components/lib/steps/Steps.d.ts +++ b/components/lib/steps/Steps.d.ts @@ -180,6 +180,10 @@ export interface StepsSlots { * Menuitem instance */ item: MenuItem; + /** + * Current active state of the menuitem + */ + active: boolean; /** * Label property of the menuitem */ diff --git a/components/lib/steps/Steps.vue b/components/lib/steps/Steps.vue index 53882112d..de0b2a47d 100755 --- a/components/lib/steps/Steps.vue +++ b/components/lib/steps/Steps.vue @@ -18,7 +18,7 @@ {{ label(item) }} - + diff --git a/components/lib/tabmenu/TabMenu.d.ts b/components/lib/tabmenu/TabMenu.d.ts index c97b4eeb4..f2f5cd013 100755 --- a/components/lib/tabmenu/TabMenu.d.ts +++ b/components/lib/tabmenu/TabMenu.d.ts @@ -203,6 +203,14 @@ export interface TabMenuSlots { * Menuitem instance */ item: MenuItem; + /** + * Index of the menuitem + */ + index: number; + /** + * Current active state of the menuitem + */ + active: boolean; /** * Label property of the menuitem */ diff --git a/components/lib/tabmenu/TabMenu.vue b/components/lib/tabmenu/TabMenu.vue index 419685a60..59076c57f 100755 --- a/components/lib/tabmenu/TabMenu.vue +++ b/components/lib/tabmenu/TabMenu.vue @@ -20,7 +20,7 @@ {{ label(item) }} - +