fix: '{' and ')' are not match (#1062)

* fix: '{' doesn't match

* fix: '}' doesn't match
pull/1077/head
Plane-walker 2019-08-07 10:06:08 +08:00 committed by tangjinzhou
parent 9d78a27030
commit 3406cecbd8
2 changed files with 4 additions and 4 deletions

View File

@ -86,14 +86,14 @@ Follow [Vue jsx](https://github.com/vuejs/babel-plugin-transform-vue-jsx) syntax
xxxx...
},
};
)}
}}
customHeaderRow={(column) => {
return {
on: {
click: () => {}, // click header row
},
};
)}
}}
/>
```

View File

@ -88,14 +88,14 @@ const columns = [{
},
};
)}
}}
customHeaderRow={(column) => {
return {
on: {
click: () => {}, // 点击表头行
}
};
)}
}}
/>
```