export default [ { "title": "表格", "screenshot": "https://alifd.alicdn.com/fusion-cool/icons/icon-antd/table-1.png", schema: { componentName: 'Table', props: { dataSource: [ ], columns: [ { title: '姓名', dataIndex: 'name', key: 'name', }, { title: '年龄', dataIndex: 'age', key: 'age', }, ], rowKey: 'id', pagination: { pageSize: 10, total: 15, current: 1, }, }, }, }, ];