Published
- 1 min read
vue cursor focus
The solution for this is noted below
vue cursor focus
Solution
<template>
<input ref="email" />
</template>
export default { methods: { focusInput() { this.$refs.email.focus(); } } }
Try other methods by searching on the site. That is if this doesn’t work