diff --git a/src/runtime/components/Table.vue b/src/runtime/components/Table.vue index 422c2b59..1c7d6081 100644 --- a/src/runtime/components/Table.vue +++ b/src/runtime/components/Table.vue @@ -173,10 +173,12 @@ type DynamicHeaderSlots = Record = Record) => any> & Record<`${K extends string ? K : never}-cell`, (props: CellContext) => any> export type TableSlots = { - expanded: (props: { row: Row }) => any - empty: (props?: {}) => any - loading: (props?: {}) => any - caption: (props?: {}) => any + 'expanded': (props: { row: Row }) => any + 'empty': (props?: {}) => any + 'loading': (props?: {}) => any + 'caption': (props?: {}) => any + 'body-top': (props?: {}) => any + 'body-bottom': (props?: {}) => any } & DynamicHeaderSlots & DynamicCellSlots @@ -371,6 +373,8 @@ defineExpose({ + +