export default [ { "title": "按钮组合", "screenshot": "", "schema": { "componentName": "ButtonGroup", "props": { options: [{ buttonText: '保存', buttonType: 'primary', }, { buttonText: '删除', buttonType: 'danger', } ], rows: [ { rowIndex: 0, buttonArray: [{ buttonType: 'primary', buttonText: '主要按钮', }, { buttonType: 'default', buttonText: '次要按钮', }] } ], items: { type: "JSSlot", values: [{ componentName: "Button", props: { type: "primary", children: "1111111" } }, { componentName: "Button", props: { type: "default", children: "222222222" } }] }, isShowMore: true, // 是否显示更多按钮 moreMenus: [{ key: '1', label: '保存' }, { key: '2', label: '删除' }] }, children: [ { componentName: 'Button', props: { children: 'Affix Top', }, }, ], } } ];