Remove column
parent
18abb0b2b3
commit
af88959551
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue