这是我的代码方案
const components = {
body: {
row: EditableFormRow,
cell: EditableCell,
},
};
我在另一个组件中使用组件,如下所示。
<CustomTable
columns={updatedcolumns}
dataSource={dataSource}
components={components}
rowClassName={() => 'editable-row'}
bordered
size="middle"
pagination={false}
// scroll={{ x: '130%', y: 240 }}
/>
我想将一个属性传递给EditableCell,EditableCell是另一个文件中定义的组件。 当我按照以下说明操作时会出现错误
const components = {
body: {
row: EditableFormRow,
cell: <EditableCell type="text"/>,
},
};
我不确定如何传递道具。请帮忙。
答案 0 :(得分:2)
您需要将组件包装在函数中
cell: () => <EditableCell type="text"/>,