Skip to content

Commit

Permalink
fix(VTabs): correct items generic type
Browse files Browse the repository at this point in the history
fixes #20981
  • Loading branch information
KaelWD committed Feb 13, 2025
1 parent 12a4543 commit 3adefb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VTabs/VTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const makeVTabsProps = propsFactory({

export const VTabs = genericComponent<new <T = TabItem>(
props: {
items?: T
items?: T[]
},
slots: VTabsSlots<T>
) => GenericProps<typeof props, typeof slots>>()({
Expand Down

0 comments on commit 3adefb9

Please sign in to comment.