import snippets from './snippets'; import { uuid } from '../_utils/utils' export default { snippets, componentName: 'FormContainer', title: '高级表单容器', category: '容器', props: [ { name: 'cols', title: { label: '列数', }, defaultValue: "1", setter: { componentName: 'RadioGroupSetter', props: { options: [{ "label": "1列", "value": 1, }, { "label": "2列", "value": 2, }, { "label": "3列", "value": 3, }] }, }, supportVariable: true }, ], configure: { component: { isContainer: true }, supports: {}, }, };