jjb-lc-designable
Version:
基于alibaba-designable源码二次封装的表单设计器。
19 lines • 396 B
JavaScript
export const Text = {
type: 'object',
properties: {
content: {
type: 'string',
'x-decorator': 'FormItem',
'x-component': 'Input.TextArea'
},
mode: {
type: 'string',
'x-decorator': 'FormItem',
'x-component': 'Select',
'x-component-props': {
defaultValue: 'normal'
},
enum: ['h1', 'h2', 'h3', 'p', 'normal']
}
}
};