change disable-hover to disabled-hover

This commit is contained in:
Lawrence Lee 2017-06-09 17:06:20 +08:00
parent 6b23d43ba5
commit 174158b167

View file

@ -153,7 +153,7 @@
noFilteredDataText: {
type: String
},
disableHover: {
disabledHover: {
type: Boolean
}
},
@ -354,12 +354,12 @@
});
},
handleMouseIn (_index) {
if (this.disableHover) return;
if (this.disabledHover) return;
if (this.objData[_index]._isHover) return;
this.objData[_index]._isHover = true;
},
handleMouseOut (_index) {
if (this.disableHover) return;
if (this.disabledHover) return;
this.objData[_index]._isHover = false;
},
highlightCurrentRow (_index) {