diff --git a/components/lib/inputotp/InputOtp.vue b/components/lib/inputotp/InputOtp.vue index 7a390d6df..62bcc0e07 100755 --- a/components/lib/inputotp/InputOtp.vue +++ b/components/lib/inputotp/InputOtp.vue @@ -177,7 +177,7 @@ export default { if (paste.length) { let pastedCode = paste.substring(0, this.length + 1); - if (!this.isIntegerOnly || !isNaN(pastedCode)) { + if (!this.integerOnly || !isNaN(pastedCode)) { this.tokens = pastedCode.split(''); this.updateModel(event); }