Skip to content
Advertisement

Vue.js working with input from a barcode scanner

I’ve stumbled upon an interesting case in a web-module, designed for both user- and machine-input (via a barcode scanner). Here is the code from Vue’s module:

JavaScript
JavaScript

The scanner can trigger keyup.enter at the end, but it inputs the barcode so fast, that the model does not update. Only by adding 10 ms delay after the input (custom setting in the scanner) and then sending keyup.enter, everything is working as expected.

The big question is: how can I “slow down” scanner’s input instead of tweaking the scanner settings (obviously not convenient for other cases)?

Best regards

Advertisement

Answer

Try calling it in this.$nextTick :

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement