先执行输入框显示,再执行focus

<view class="comment-input-wrap" :style="{display:(isShowCommentPanel?'block':'none')}" @click.stop>
	<input type="text" :focus="inputFocus" placeholder="请输入评论">
</view>
/**
* 展开评论输入框面板
*/
openCommentPanel(){
    this.$set(this,'isShowCommentPanel',true);
    setTimeout(()=>{
         this.$set(this,'inputFocus',true);
    },200)
}


 

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐