export default [ { title: '下拉菜单', screenshot: 'https://alifd.alicdn.com/fusion-cool/icons/icon-antd/dropdown-1.png', schema: { componentName: 'Dropdown', props: { overlay: { type: 'JSSlot', value: [ { componentName: 'Menu', props: { items: [ { key: 'menu1', label: '菜单名', children: [ { key: 'menu2', type: 'group', label: '菜单组', children: [ { key: 'menu2-1', label: '菜单2-1', }, { key: 'menu2-2', label: '菜单2-2', }, ], }, ], }, ], }, }, ], }, }, children: [ { componentName: 'Button', props: { type: 'link', children: { type: 'JSSlot', value: [ { componentName: 'Typography.Text', props: { children: 'Hover me', style: { color: 'inherit', }, }, }, { componentName: 'Icon', props: { type: 'DownOutlined', size: 15, style: { marginLeft: 4, verticalAlign: 'middle', }, }, }, ], }, }, }, ], }, }, ];