Merge pull request #1954 from BenjaminMINK/patch-1
Add 'tab' key support on Input Numberpull/2621/head
commit
441f51bdc6
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue