vue H5的input自动获焦弹出手机键盘

545 阅读1分钟
// 兼容 ios 安卓
<input type="text" placeholder="请输入" ref='Inp' :autofocus='autofocus' />

this.$nextTick(()=>{    
    this.autofocus=true    
    this.$refs.Inp.focus();
})