Files
vxe-table/types/button.d.ts
xuliangzhan d9b4419c56 优化重构
2020-03-17 18:34:03 +08:00

14 lines
261 B
TypeScript

import { VXETableModule } from './component';
/**
* 按钮
*/
export declare class Button extends VXETableModule {
type?: string;
name?: string | number;
content?: string;
status?: string;
icon?: string;
disabled?: boolean;
loading?: boolean;
}