Merge pull request #1954 from BenjaminMINK/patch-1

Add 'tab' key support on Input Number
pull/2621/head
Tuğçe Küçükoğlu 2022-06-02 15:11:59 +03:00 committed by GitHub
commit 441f51bdc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -433,7 +433,8 @@ export default {
}
break;
//enter
//tab and enter
case 9:
case 13:
newValueStr = this.validateValue(this.parseValue(inputValue));
this.$refs.input.$el.value = this.formatValue(newValueStr);