官方文档自定义指令 ​​Vue.js​

<input type="text" placeholder="说些什么吧"  ref="input" />
mounted() {
this.$nextTick(() => {
this.$refs.input.focus();
});
},