JSFiddle - React, Tailwind, and code Playground
HTML
<div id="app">
<div ref="teste" v-show="ver" tabindex="0" @blur="ver = !ver">Lorem</div>
<input @click="clicar" type="button" value="add">
</div>
JavaScript
new Vue({
el: '#app',
data() {
return {
ver: false
}
},
methods: {
clicar() {
this.ver = !this.ver
this.$nextTick(() => this.$refs.teste.focus())
}
}
})