diff --git a/src/runtime/components/Tabs.vue b/src/runtime/components/Tabs.vue index ec14ffab..2f38a437 100644 --- a/src/runtime/components/Tabs.vue +++ b/src/runtime/components/Tabs.vue @@ -32,7 +32,9 @@ export interface TabsEmits extends TabsRootEmits {} type SlotProps = (props: { item: T, index: number }) => any export type TabsSlots = { + leading: SlotProps default: SlotProps + trailing: SlotProps content: SlotProps [key: string]: SlotProps }