vue移动端,解决focus无效
时间:2021-07-05 18:32:47
收藏:0
阅读:0
主要是通过ref
<input type="text" class="content" v-model="content" ref="content"/>
<span @click="handleClick">使input获得焦点</span>
handleClick(label){
this.$refs.content.focus()
},
评论(0)