Skip to content

Commit

Permalink
fix(VStepperWindow/Item/VTabsWindow): add missing class / style passt…
Browse files Browse the repository at this point in the history
…hrough
  • Loading branch information
johnleider committed May 7, 2024
1 parent f2c6050 commit 49fc5c5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/vuetify/src/components/VStepper/VStepperWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ export const VStepperWindow = genericComponent()({
_as="VStepperWindow"
{ ...windowProps }
v-model={ model.value }
class="v-stepper-window"
class={[
'v-stepper-window',
props.class,
]}
style={ props.style }
mandatory={ false }
touch={ false }
v-slots={ slots }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ export const VStepperWindowItem = genericComponent()({
<VWindowItem
_as="VStepperWindowItem"
{ ...windowItemProps }
class="v-stepper-window-item"
class={[
'v-stepper-window-item',
props.class,
]}
style={ props.style }
v-slots={ slots }
/>
)
Expand Down
6 changes: 5 additions & 1 deletion packages/vuetify/src/components/VTabs/VTabsWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ export const VTabsWindow = genericComponent()({
_as="VTabsWindow"
{ ...windowProps }
v-model={ model.value }
class="v-tabs-window"
class={[
'v-tabs-window',
props.class,
]}
style={ props.style }
mandatory={ false }
touch={ false }
v-slots={ slots }
Expand Down

0 comments on commit 49fc5c5

Please sign in to comment.