import { basicInputConfigureOptions } from '../../input-configure-options' export default { ...basicInputConfigureOptions(), display: { type: 'radio', label: '布局方式', isButton: true, options: [{ label: '块级', value: 'block' }, { label: '行内', value: 'inline-block' }] }, defaultValue: { type: 'staticOptionsConfig', label: '静态数据', otherKey: 'options' }, required: {}, requiredErrorMessage: {} }