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... xxxx...
}, },
}; };
)} }}
customHeaderRow={(column) => { customHeaderRow={(column) => {
return { return {
on: { on: {
click: () => {}, // click header row click: () => {}, // click header row
}, },
}; };
)} }}
/> />
``` ```

View File

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