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

@@ -59,8 +59,9 @@ export function useFormSchema(): VbenFormSchema[] {
{
fieldName: 'description',
label: '应用描述',
component: 'Textarea',
component: 'Input',
componentProps: {
type: 'textarea',
placeholder: '请输入应用描述',
},
},
@@ -158,8 +159,9 @@ export function useFormSchema(): VbenFormSchema[] {
{
fieldName: 'additionalInformation',
label: '附加信息',
component: 'Textarea',
component: 'Input',
componentProps: {
type: 'textarea',
placeholder: '请输入附加信息JSON 格式数据',
},
},