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
I want to set the keyboard focus to a <input ref="email-input" ...> element on my first page that opens, so that a user can start inputing his credentials right away. How do i achive this?
It seems like the Chromium window has no focus and so vue style: this.$refs['email-input'].focus(); (in a watcher) does not work. Even not in a $nextTick funciton block.
The text was updated successfully, but these errors were encountered:
I want to set the keyboard focus to a
<input ref="email-input" ...>
element on my first page that opens, so that a user can start inputing his credentials right away. How do i achive this?It seems like the Chromium window has no focus and so vue style:
this.$refs['email-input'].focus();
(in a watcher) does not work. Even not in a$nextTick
funciton block.The text was updated successfully, but these errors were encountered: