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...
|
xxxx...
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
)}
|
}}
|
||||||
customHeaderRow={(column) => {
|
customHeaderRow={(column) => {
|
||||||
return {
|
return {
|
||||||
on: {
|
on: {
|
||||||
click: () => {}, // click header row
|
click: () => {}, // click header row
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
)}
|
}}
|
||||||
/>
|
/>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -88,14 +88,14 @@ const columns = [{
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
)}
|
}}
|
||||||
customHeaderRow={(column) => {
|
customHeaderRow={(column) => {
|
||||||
return {
|
return {
|
||||||
on: {
|
on: {
|
||||||
click: () => {}, // 点击表头行
|
click: () => {}, // 点击表头行
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
)}
|
}}
|
||||||
/>
|
/>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue