Files
vxe-table/types/switch.d.ts
xuliangzhan 99f75ac6f3 优化switch
2020-10-18 22:00:49 +08:00

22 lines
412 B
TypeScript

import { VXETableComponent } from './component'
/**
* 开关
*/
export declare class Switch extends VXETableComponent {
/**
* 绑定值
*/
value?: string | number | boolean;
/**
* 是否禁用
*/
disabled?: boolean;
openLabel?: string;
closeLabel?: string;
openValue?: string | number | boolean;
closeValue?: string | number | boolean;
openIcon?: string;
closeIcon?: string;
}