UNPKG

jjb-lc-designable

Version:

基于alibaba-designable源码二次封装的表单设计器。

22 lines (20 loc) 458 B
import { ISchema } from 'jjb-lc-formily/react' export const Text: ISchema = { 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'], }, }, }