<div id="app">
  <input type="text" ref="content" />
  <button @click="getFocus">getFocus</button>
</div>
let app=new Vue({
  el: "#app",
  methods: {
    getFocus: function(){
      this.$refs.content.focus()
    }
  }
})

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.11/vue.min.js