mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-01-03 15:18:15 +00:00
27 lines
450 B
TypeScript
27 lines
450 B
TypeScript
import type { FormConfig } from '@tmagic/form';
|
|
|
|
export default [
|
|
{
|
|
name: 'placeholder',
|
|
text: 'placeholder',
|
|
},
|
|
{
|
|
name: 'append',
|
|
legend: '后置按钮',
|
|
type: 'fieldset',
|
|
labelWidth: '80px',
|
|
items: [
|
|
{
|
|
name: 'text',
|
|
text: '按钮文案',
|
|
},
|
|
{
|
|
name: 'handler',
|
|
type: 'vs-code',
|
|
height: '400px',
|
|
text: '点击',
|
|
},
|
|
],
|
|
},
|
|
] as FormConfig;
|