mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
24 lines
495 B
TypeScript
24 lines
495 B
TypeScript
import { VXEComponent } from './component'
|
|
import { VxeOptionPropTypes } from './option'
|
|
|
|
/**
|
|
* 组件 - 下拉框选项分组
|
|
* @example import { Optgroup as VxeOptgroup } from 'vxe-table'
|
|
*/
|
|
export const Optgroup: VXEComponent<VxeOptgroupProps>;
|
|
|
|
export type VxeOptgroupProps = {
|
|
/**
|
|
* 显示内容
|
|
*/
|
|
label?: VxeOptionPropTypes.Label;
|
|
/**
|
|
* 是否禁用
|
|
*/
|
|
visible?: VxeOptionPropTypes.Visible;
|
|
/**
|
|
* 是否禁用
|
|
*/
|
|
disabled?: VxeOptionPropTypes.Disabled;
|
|
}
|