Skip to content

Commit

Permalink
Merge pull request #1954 from BenjaminMINK/patch-1
Browse files Browse the repository at this point in the history
Add 'tab' key support on Input Number
  • Loading branch information
tugcekucukoglu authored Jun 2, 2022
2 parents eb802d4 + 82554e8 commit 441f51b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/inputnumber/InputNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 441f51b

Please sign in to comment.