vue中input autofocus无用

 
  <input type="text" v-model="phone" ref="input">
使用ref选中
在生命周期mounted中
mounted(){
    this.$nextTick(() => {
        this.$refs.input.focus()
    })
}
posted @ 2020-11-11 15:22  2019liyuan  阅读(453)  评论(0)    收藏  举报