hemengke1997 / use-antd-resizable-header

antd table 表格头列拖拽 hook / React Hook makes antd Table Header resizable.
https://hemengke1997.github.io/use-antd-resizable-header/
MIT License
240 stars 50 forks source link

columns 不使用dataIndex 使用 render自定义应该怎么拿到item; #63

Closed yang2018218 closed 1 year ago

yang2018218 commented 1 year ago

const columns = useMemo(() => { return [ { title: 'Name', render: (item: any) => { console.log('item: ', item); }, key: 'id', width: 200, fixed: 'left', }]})