1
0
mirror of synced 2025-12-11 08:38:08 +08:00

更新 ts、优化渲染、修复校验无法触发问题、支持 form-gather 布局排版、修复已知问题

This commit is contained in:
xuliangzhan
2021-03-26 18:05:05 +08:00
parent bf7ef54144
commit c724c4c3f6
127 changed files with 2354 additions and 832 deletions

8
types/optgroup.d.ts vendored
View File

@@ -1,5 +1,5 @@
import { DefineComponent } from 'vue'
import { VXEComponent } from './component'
import { VxeOptionPropTypes } from './option'
/**
* 组件 - 下拉框选项分组
@@ -11,13 +11,13 @@ export type VxeOptgroupProps = {
/**
* 显示内容
*/
label?: string | number | boolean;
label?: VxeOptionPropTypes.Label;
/**
* 是否禁用
*/
visible?: boolean;
visible?: VxeOptionPropTypes.Visible;
/**
* 是否禁用
*/
disabled?: boolean;
disabled?: VxeOptionPropTypes.Disabled;
}