fixed #693
This commit is contained in:
parent
75873f9019
commit
ade5dbba52
2 changed files with 9 additions and 5 deletions
|
@ -398,11 +398,11 @@
|
|||
},
|
||||
clickCurrentRow (_index) {
|
||||
this.highlightCurrentRow (_index);
|
||||
this.$emit('on-row-click', JSON.parse(JSON.stringify(this.cloneData[_index])));
|
||||
this.$emit('on-row-click', JSON.parse(JSON.stringify(this.cloneData[_index])), _index);
|
||||
},
|
||||
dblclickCurrentRow (_index) {
|
||||
this.highlightCurrentRow (_index);
|
||||
this.$emit('on-row-dblclick', JSON.parse(JSON.stringify(this.cloneData[_index])));
|
||||
this.$emit('on-row-dblclick', JSON.parse(JSON.stringify(this.cloneData[_index])), _index);
|
||||
},
|
||||
getSelection () {
|
||||
let selectionIndexes = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue