Remove column

pull/1885/head
Cagatay Civici 2021-12-07 11:49:25 +03:00
parent 18abb0b2b3
commit af88959551
1 changed files with 2 additions and 14 deletions

View File

@ -778,24 +778,12 @@ export interface DataTableProps {
export interface DataTableSlots { export interface DataTableSlots {
/** /**
* Custom header template. * Custom header template.
* @param {Object} scope - header slot's params.
*/ */
header: (scope: { header: () => VNode[];
/**
* Column node
*/
column: Column;
}) => VNode[];
/** /**
* Custom footer template. * Custom footer template.
* @param {Object} scope - footer slot's params.
*/ */
footer: (scope: { footer: () => VNode[];
/**
* Column node
*/
column: Column;
}) => VNode[];
/** /**
* Custom paginator start template. * Custom paginator start template.
*/ */