React sensor hook that fires a callback when user starts typing. Can be used to focus default input field on the page.
import {useStartTyping} from 'vue-next-use';
const Demo = {
setup(){
useStartTyping(() => alert('Started typing...'));
return null;
}
};