You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very nice keyboard! I'm trying to use it with a Vuejs app, but it seems not to work with Vuejs bound input fields...you can try it here: https://vuejs.org/v2/guide/forms.html#Text
If I dispatch the following event to the element after typing with your keyboard, it seems to work.
var event = new Event('input', {
'bubbles': true,
'cancelable': true
});
Is there some way to make this work?
Thanks,
Kevin
The text was updated successfully, but these errors were encountered:
Very nice keyboard! I'm trying to use it with a Vuejs app, but it seems not to work with Vuejs bound input fields...you can try it here: https://vuejs.org/v2/guide/forms.html#Text
If I dispatch the following event to the element after typing with your keyboard, it seems to work.
Is there some way to make this work?
Thanks,
Kevin
The text was updated successfully, but these errors were encountered: