diff --git a/examples/routers/table.vue b/examples/routers/table.vue
index e4a0191a..2639c9a8 100644
--- a/examples/routers/table.vue
+++ b/examples/routers/table.vue
@@ -1,5 +1,5 @@
-
+
diff --git a/src/components/table/table.vue b/src/components/table/table.vue
index eac33094..555d0cc0 100644
--- a/src/components/table/table.vue
+++ b/src/components/table/table.vue
@@ -404,9 +404,7 @@
this.objData[_index]._isChecked = status;
const selection = this.getSelection();
- if (status) {
- this.$emit('on-select', selection, JSON.parse(JSON.stringify(this.data[_index])));
- }
+ this.$emit(status ? 'on-select' : 'on-select-cancel', selection, JSON.parse(JSON.stringify(this.data[_index])));
this.$emit('on-selection-change', selection);
},
toggleExpand (_index) {