Commit 174158b167da29553f51de1dd98d1adbde840bdb
1 parent
6b23d43b
change disable-hover to disabled-hover
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/components/table/table.vue
... | ... | @@ -153,7 +153,7 @@ |
153 | 153 | noFilteredDataText: { |
154 | 154 | type: String |
155 | 155 | }, |
156 | - disableHover: { | |
156 | + disabledHover: { | |
157 | 157 | type: Boolean |
158 | 158 | } |
159 | 159 | }, |
... | ... | @@ -354,12 +354,12 @@ |
354 | 354 | }); |
355 | 355 | }, |
356 | 356 | handleMouseIn (_index) { |
357 | - if (this.disableHover) return; | |
357 | + if (this.disabledHover) return; | |
358 | 358 | if (this.objData[_index]._isHover) return; |
359 | 359 | this.objData[_index]._isHover = true; |
360 | 360 | }, |
361 | 361 | handleMouseOut (_index) { |
362 | - if (this.disableHover) return; | |
362 | + if (this.disabledHover) return; | |
363 | 363 | this.objData[_index]._isHover = false; |
364 | 364 | }, |
365 | 365 | highlightCurrentRow (_index) { | ... | ... |