Skip to content

Commit

Permalink
fix(Tabs): rename type VTabItem to VTabItemProps
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Jun 15, 2023
1 parent b9a9cc2 commit eb47718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/tabs/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type VTabItem = Record<string, any>;
export type VTabItemProps = Record<string, any>;

export interface VTabProps {
modelValue: string | number;
items: VTabItem[];
items: VTabItemProps[];
}

0 comments on commit eb47718

Please sign in to comment.