vue移动端,解决focus无效

主要是通过ref
<input type="text" class="content" v-model="content" ref="content"/>
<span  @click="handleClick">使input获得焦点</span>
 
handleClick(label){
  this.$refs.content.focus()
},
posted @ 2021-07-03 15:58  前端渣的日常记录  阅读(1194)  评论(0)    收藏  举报