mirror of https://github.com/ElemeFE/element
Slider: Fix style problem when clicking slider bar(#15561)
parent
466aa288a3
commit
0d8090e704
|
@ -226,6 +226,7 @@
|
||||||
value = parseFloat(value.toFixed(this.precision));
|
value = parseFloat(value.toFixed(this.precision));
|
||||||
this.$emit('input', value);
|
this.$emit('input', value);
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
|
this.displayTooltip();
|
||||||
this.$refs.tooltip && this.$refs.tooltip.updatePopper();
|
this.$refs.tooltip && this.$refs.tooltip.updatePopper();
|
||||||
});
|
});
|
||||||
if (!this.dragging && this.value !== this.oldValue) {
|
if (!this.dragging && this.value !== this.oldValue) {
|
||||||
|
|
Loading…
Reference in New Issue