<template> <input ref="email" /> </template> export default { methods: { focusInput() { this.$refs.email.focus(); } } }