docs: fix parameter

This commit is contained in:
Wei Zhu 2018-02-16 15:19:12 +08:00
parent 97b09b393b
commit a6ffd332fa
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ Same as `onRow` `onHeaderRow` `onCell` `onHeaderCell`
```jsx
<Table
onRow={(column) => {
onRow={(record) => {
return {
onClick: () => {}, // click row
onMouseEnter: () => {}, // mouse enter row

View File

@ -87,7 +87,7 @@ const columns = [{
```jsx
<Table
onRow={(column) => {
onRow={(record) => {
return {
onClick: () => {}, // 点击行
onMouseEnter: () => {}, // 鼠标移入行