feat: naive Textarea input

This commit is contained in:
xingyu4j
2025-05-14 18:06:31 +08:00
parent 1351702fec
commit 0c9670bab5
15 changed files with 56 additions and 26 deletions

View File

@@ -115,7 +115,10 @@ export function useFormSchema(): VbenFormSchema[] {
{
fieldName: 'remark',
label: '备注',
component: 'Textarea',
component: 'Input',
componentProps: {
type: 'textarea',
},
},
];
}