update Table event
update Table event
This commit is contained in:
parent
7ca3e3dab2
commit
ee975cd4b3
1 changed files with 2 additions and 2 deletions
|
@ -299,11 +299,11 @@
|
|||
},
|
||||
clickCurrentRow (_index) {
|
||||
this.highlightCurrentRow (_index);
|
||||
this.$emit('on-click', JSON.parse(JSON.stringify(this.data[_index])));
|
||||
this.$emit('on-row-click', JSON.parse(JSON.stringify(this.data[_index])));
|
||||
},
|
||||
dblclickCurrentRow (_index) {
|
||||
this.highlightCurrentRow (_index);
|
||||
this.$emit('on-dblclick', JSON.parse(JSON.stringify(this.data[_index])));
|
||||
this.$emit('on-row-dblclick', JSON.parse(JSON.stringify(this.data[_index])));
|
||||
},
|
||||
getSelection () {
|
||||
let selectionIndexes = [];
|
||||
|
|
Loading…
Add table
Reference in a new issue