mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
23 lines
456 B
TypeScript
23 lines
456 B
TypeScript
import { VXETableComponent } from './component'
|
|
|
|
/**
|
|
* 开关
|
|
*/
|
|
export declare class VxeSwitch extends VXETableComponent {
|
|
/**
|
|
* 绑定值
|
|
*/
|
|
value?: string | number | boolean;
|
|
/**
|
|
* 是否禁用
|
|
*/
|
|
disabled?: boolean;
|
|
openLabel?: string;
|
|
closeLabel?: string;
|
|
openValue?: string | number | boolean;
|
|
closeValue?: string | number | boolean;
|
|
openIcon?: string;
|
|
closeIcon?: string;
|
|
}
|
|
export class Switch extends VxeSwitch {}
|