1、从vue的实例属性$ref去调input的focus方法使其实现聚焦。

<a-input type="text ref="ainput" />


<button @click="handleChange"></button>

2、点击button自动聚焦,或其他事件需要聚焦

methods:{
    handleChange(){
        this.$nextTick(()=>{
            this.$refs.ainput.focus()
        })
    }
}

Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐