Skip to content

Commit 3406cec

Browse files
Plane-walkertangjinzhou
authored andcommitted
fix: '{' and ')' are not match (#1062)
* fix: '{' doesn't match * fix: '}' doesn't match
1 parent 9d78a27 commit 3406cec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/table/index.en-US.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ Follow [Vue jsx](https://github.com/vuejs/babel-plugin-transform-vue-jsx) syntax
8686
xxxx...
8787
},
8888
};
89-
)}
89+
}}
9090
customHeaderRow={(column) => {
9191
return {
9292
on: {
9393
click: () => {}, // click header row
9494
},
9595
};
96-
)}
96+
}}
9797
/>
9898
```
9999

components/table/index.zh-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ const columns = [{
8888
},
8989

9090
};
91-
)}
91+
}}
9292
customHeaderRow={(column) => {
9393
return {
9494
on: {
9595
click: () => {}, // 点击表头行
9696
}
9797
};
98-
)}
98+
}}
9999
/>
100100
```
101101

0 commit comments

Comments
 (0)