Skip to content

Commit

Permalink
Table: fix a doc typo (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leopoldthecoder authored and furybean committed Oct 30, 2016
1 parent 6e51f65 commit 107af48
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions examples/docs/zh-cn/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@

methods: {
handleSelectionChange(val) {
this.singleSelection = val;
},

handleMultipleSelectionChange(val) {
this.multipleSelection = val;
},

Expand All @@ -138,10 +134,6 @@
},

watch: {
singleSelection(val) {
console.log('selection: ', val);
},

multipleSelection(val) {
console.log('selection: ', val);
}
Expand Down Expand Up @@ -684,7 +676,7 @@
<el-table
:data="tableData3"
style="width: 100%"
@selection-change="handleMultipleSelectionChange">
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
width="50">
Expand Down

0 comments on commit 107af48

Please sign in to comment.