美文网首页
vue项目中触发某个元素的单击事件

vue项目中触发某个元素的单击事件

作者: sweetylulu | 来源:发表于2021-10-13 17:22 被阅读0次

    点击【我的房间】触发【首页】的点击事件

    <div class="my-house" @click="joinChannel">
          <i class="el-icon-house"></i>
          <span slot="title">我的房间</span>
    </div>
    <span slot="title" ref="activeIndexRef">首页</span>
    
    joinChannel() {
          this.$refs.activeIndexRef.click();
    }
    

    相关文章

      网友评论

          本文标题:vue项目中触发某个元素的单击事件

          本文链接:https://www.haomeiwen.com/subject/nykeoltx.html