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

* fix: '{' doesn't match

* fix: '}' doesn't match
pull/1077/head
Plane-walker 5 years ago committed by tangjinzhou
parent 9d78a27030
commit 3406cecbd8

@ -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
},
};
)}
}}
/>
```

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

Loading…
Cancel
Save