[Vuejs]-How to notice tabbing into a text input field

2👍

A more general trigger is when a user focuses on the input.

It is done by the focus event.

So something like

@focus='certainFunction'

It doesn’t matter if he got there by clicking or tabbing, he is still focused on the input.

Leave a comment