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 {
/**
* Custom header template.
* @param {Object} scope - header slot's params.
*/
header: (scope: {
/**
* Column node
*/
column: Column;
}) => VNode[];
header: () => VNode[];
/**
* Custom footer template.
* @param {Object} scope - footer slot's params.
*/
footer: (scope: {
/**
* Column node
*/
column: Column;
}) => VNode[];
footer: () => VNode[];
/**
* Custom paginator start template.
*/