change disable-hover to disabled-hover
This commit is contained in:
parent
6b23d43ba5
commit
174158b167
1 changed files with 3 additions and 3 deletions
|
@ -153,7 +153,7 @@
|
||||||
noFilteredDataText: {
|
noFilteredDataText: {
|
||||||
type: String
|
type: String
|
||||||
},
|
},
|
||||||
disableHover: {
|
disabledHover: {
|
||||||
type: Boolean
|
type: Boolean
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -354,12 +354,12 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleMouseIn (_index) {
|
handleMouseIn (_index) {
|
||||||
if (this.disableHover) return;
|
if (this.disabledHover) return;
|
||||||
if (this.objData[_index]._isHover) return;
|
if (this.objData[_index]._isHover) return;
|
||||||
this.objData[_index]._isHover = true;
|
this.objData[_index]._isHover = true;
|
||||||
},
|
},
|
||||||
handleMouseOut (_index) {
|
handleMouseOut (_index) {
|
||||||
if (this.disableHover) return;
|
if (this.disabledHover) return;
|
||||||
this.objData[_index]._isHover = false;
|
this.objData[_index]._isHover = false;
|
||||||
},
|
},
|
||||||
highlightCurrentRow (_index) {
|
highlightCurrentRow (_index) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue