系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 数据库 > mssql2008 > 详细页面

基于vue 兄弟组件之间事件触发(详解)

时间:2023-12-07来源:系统城装机大师作者:佚名

兄弟组件之间的事件触发,大概思路是通过父级组件交换数据,watch来监听触发事件。

场景是父级组件A同时引用两个子级组件B,C。点击B组件中的按钮执行C组件中的事件。

第一步:父级组件A

1
2
3
4
5
6
7
8
9
10
<bottom-play :play="playStatus" @playStatus="btmChild"></bottom-play>
    
 methods:{
 listChild:function(val){//B组件自定义事件 状态是布尔值
  this.playStatus = val;
  },
 btmChild:function(val){//C组件自定义事件
    this.btmStatus = val;
  }
}

第二步:子级组件B代码

1
2
3
4
5
6
7
props: ['play'],//接受父级传递的数据
watch:{//监听数据 如果改变执行audioPlay函数,audioPlay在methods中定义
  play:'audioPlay'
}
audioPlay:function(){
 this.$emit('playStatus',false);//向父级组件传递参数
}

第三步:子级组件C代码

1
2
3
4
props: ['btmStatus']
,watch:{
  btmStatus:'playList'
}

总结就是A组件定义两个值分别传递给B,C。然后B,C组件watch方法监听数据触发事件。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载