Update TabPanel.d.ts

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-12 09:42:12 +03:00
parent 6bc986af63
commit 55324b4d7c

View file

@ -113,11 +113,11 @@ export interface TabPanelSlots {
/**
* Custom content template.
*/
default: () => VNode[];
default(): VNode[];
/**
* Custom header template.
*/
header: () => VNode[];
header(): VNode[];
}
export interface TabPanelEmits {}