diff --git a/src/runtime/components/Card.vue b/src/runtime/components/Card.vue index 6b2f23ef..902498ed 100644 --- a/src/runtime/components/Card.vue +++ b/src/runtime/components/Card.vue @@ -13,6 +13,12 @@ export interface CardProps extends Omit { class?: any ui?: Partial } + +export interface CardSlots { + header(): any + default(): any + footer(): any +}