feat(design, tdesign-vue-next-adapter): formItem新增labelAlign prop

This commit is contained in:
roymondchen 2025-11-18 19:09:14 +08:00
parent 310aa47c1d
commit 0ecc116652
2 changed files with 2 additions and 0 deletions

View File

@ -184,6 +184,7 @@ export interface FormItemProps {
labelWidth?: string | number;
rules?: any;
extra?: string;
labelPosition?: string;
}
export interface InputProps {

View File

@ -349,6 +349,7 @@ const adapter: any = {
name: props.prop,
rules: props.rules,
help: props.extra,
labelAlign: props.labelPosition,
}),
},