vue和原生自动聚焦

原生聚焦:autofocus="autofocus"

<input type="text" id="username" name="username" autofocus="autofocus"/>

vue聚焦:this.$refs.input.focus()

<input type="text" placeholder="说些什么吧" ref="input" />

mounted() {
  this.$nextTick(() => {
    this.$refs.input.focus();
  });
},
posted @ 2020-07-05 10:25  yx1102  阅读(207)  评论(0编辑  收藏  举报