【Vue 全局事件总线】

在这里插入图片描述

全局事件总线

它也是组件通信的一种方式,可以用于实现任意组件间通信。

安装全局事件总线

在main.js中:

import Vue from 'vue'
import App from './App.vue'

Vue.config.productionTip = false

new Vue({
  el: '#app',
  render: h => h(App),
  //安装全局事件总线
  beforeCreate() {
    Vue.prototype.$bus = this
  }
})

使用全局事件总线

(1)数据接收方要给 $bus 绑定自定义事件,数据接收方还应该要有该事件的回调(即自定义事件发生后,接收方该怎么做)

(2)数据发送方负责触发这个自定义事件,并捎带数据过去

例子与代码

例子

在这里插入图片描述

代码

接收方 Son.vue

<template>
  <div>
      <h3>我是 {{name}} 组件</h3>
      <h3>我今年 {{age}} 岁了</h3>
      <h3>我uncle是 {{uncleName ? uncleName : '不知道'}} 组件</h3>
      <h3>我uncle今年 {{uncleAge ? uncleAge : '不知道多少'}} 岁了</h3>
  </div>
</template>

<script>
  export default {
    name: 'Son',
    data() {
      return {
        name: 'son',
        age: 6,
        uncleName: '',
        uncleAge: 0
      }
    },
    methods: {
      showUncle(name,age) {
        this.uncleName = name
        this.uncleAge = age
        //console.log('@@@',name,age);
      }
    },
    mounted() {
    //给$bus绑定自定义事件与它的回调
      this.$bus.$on('sendToSon',this.showUncle)
    },
    //最好给$bus解绑用不到的自定义事件
    beforeDestroy() {
      console.log('will be destroyed'); 
      this.$bus.$off('sendToSon')
    }
  }
</script>

发送方 Uncle.vue

<template>
  <div>
      <h3>我是 {{name}} 组件</h3>
      <h3>我今年 {{age}} 岁了</h3>
  </div>
</template>

<script>
  export default {
    name: 'Uncle',
    data() {
      return {
        name: 'uncle',
        age: 36
      }
    },
    mounted() {
    //触发自定义事件
      this.$bus.$emit('sendToSon',this.name,this.age)
    }
  }
</script>

效果

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值