JSFiddle - React, Tailwind, and code Playground

by James Chen

HTML

<div id="app">
  <input ref="name" />
  <button @click="focusIt('name')">
    Click me
  </button>
</div>

JavaScript

new Vue({
	el: "#app",
  methods: {
  	focusIt(value) {
    	this.$refs.name.focus();
    }
  }
})