diff --git a/components/lib/inputnumber/InputNumber.vue b/components/lib/inputnumber/InputNumber.vue index 66625842f..7c2e3d2d4 100755 --- a/components/lib/inputnumber/InputNumber.vue +++ b/components/lib/inputnumber/InputNumber.vue @@ -956,6 +956,10 @@ export default { input.value = this.formatValue(newValue); input.setAttribute('aria-valuenow', newValue); this.updateModel(event, newValue); + + if (!this.disabled && !this.readonly && this.highlightOnFocus) { + DomHandler.clearSelection(); + } }, clearTimer() { if (this.timer) {