jjb-lc-designable
Version:
基于alibaba-designable源码二次封装的表单设计器。
19 lines • 394 B
JavaScript
export const Switch = {
type: 'object',
properties: {
autoFocus: {
type: 'boolean',
'x-decorator': 'FormItem',
'x-component': 'Switch'
},
size: {
type: 'string',
enum: ['large', 'small', 'default', ''],
'x-decorator': 'FormItem',
'x-component': 'Select',
'x-component-props': {
defaultValue: 'default'
}
}
}
};