diff --git a/components/lib/inputmask/InputMask.vue b/components/lib/inputmask/InputMask.vue index 80e43c6e2..3c3f670b1 100755 --- a/components/lib/inputmask/InputMask.vue +++ b/components/lib/inputmask/InputMask.vue @@ -380,7 +380,9 @@ export default { return this.partialPosition ? i : this.firstNonMaskPos; }, handleInputChange(event) { - if (this.readonly) { + const isPasteEvent = event.type === 'paste'; + + if (this.readonly || isPasteEvent) { return; }