fix: popconfirm failure due to tooltip api changes(change to visibleChange) #34
parent
59c06d04b3
commit
2d5b60d653
|
@ -102,7 +102,7 @@ export default {
|
||||||
},
|
},
|
||||||
ref: 'tooltip',
|
ref: 'tooltip',
|
||||||
on: {
|
on: {
|
||||||
change: this.onVisibleChange,
|
visibleChange: this.onVisibleChange,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
const overlay = (
|
const overlay = (
|
||||||
|
|
|
@ -117,7 +117,7 @@ const SliderWithTooltip = {
|
||||||
on: {
|
on: {
|
||||||
mouseenter: () => this.handleTooltipVisibleChange(index, true),
|
mouseenter: () => this.handleTooltipVisibleChange(index, true),
|
||||||
mouseleave: () => this.handleTooltipVisibleChange(index, false),
|
mouseleave: () => this.handleTooltipVisibleChange(index, false),
|
||||||
change: log,
|
visibleChange: log,
|
||||||
},
|
},
|
||||||
style: {
|
style: {
|
||||||
...handleStyleWithIndex,
|
...handleStyleWithIndex,
|
||||||
|
|
Loading…
Reference in New Issue