<template> <input ref="input"> </template> <script> export default { methods: { // used to put the focus on this field from the parent focus() { this.$refs.input.focus(); } } }; </script>