mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
27 lines
473 B
TypeScript
27 lines
473 B
TypeScript
import { VXETableModule } from './component';
|
|
|
|
/**
|
|
* 下拉框
|
|
*/
|
|
export declare class Select extends VXETableModule {
|
|
value?: any;
|
|
clearable?: boolean;
|
|
placeholder?: string;
|
|
disabled?: boolean;
|
|
prefixIcon?: string;
|
|
placement?: string;
|
|
options?: any[];
|
|
optionProps?: any;
|
|
optionGroups?: any[];
|
|
optionGroupProps?: any;
|
|
transfer?: boolean;
|
|
|
|
/**
|
|
* 获取焦点
|
|
*/
|
|
focus(): Promise<any>;
|
|
/**
|
|
* 失去焦点
|
|
*/
|
|
blur(): Promise<any>;
|
|
} |