Merge pull request #29 from navedqb/fix--5382

fix: incorrect inputmode
pull/5385/head
navedqb 2024-03-07 14:32:38 +05:30 committed by GitHub
commit 39e823297f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ export default {
},
computed: {
inputMode() {
return this.integerOnly ? 'number' : 'text';
return this.integerOnly ? 'numeric' : 'text';
},
inputType() {
return this.mask ? 'password' : 'text';