fix: '{' and ')' are not match (#1062)
* fix: '{' doesn't match * fix: '}' doesn't matchpull/1077/head
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…
Reference in New Issue