Chrome virtual keyboard with Vue JS 3 issue

Viewed 12

I'm running VueJS 3 project on a Raspberry Pi with a touch screen. Currently I'm using Chromium 88 and I have installed the Chrome Virtual Keyboard: https://chrome.google.com/webstore/detail/virtual-keyboard/pflmllfnnabikmfkkaddkoolinlfninn

On the Raspberry as well on Windows, all the events that the virtual keyboard is emiting are with empty key value, hence - nothing happens to the inputs.

enter image description here

Every key emits 3 events, all like this:

type:"keydown"
key:""
ctrlKey:false
shiftKey:true
altKey:false
metaKey:false

type:"keypress"
key:""
ctrlKey:false
shiftKey:false
altKey:false
metaKey:true

type:"keyup"
key:""
ctrlKey:false
shiftKey:false
altKey:false
metaKey:true

Have anyone dealt with such issue?

Strange thing for is that when you press them, you can see that the input reflects the keys but as soon as you stop pressing the keys, they letters disappear: enter image description here

Thanks!

0 Answers
Related