Vue中非父子之间的事件车传值(事件总线)

在main.js之中定义一个新的对象

//非父组件之间的通信使用事件车 来源于new Vue()
Vue.prototype.EmitEvent=new Vue();

左:

<template>
  <div id="menuchild">
    我是左端的子组件
    <!--
      非父子之间的传递数据
    -->
    <button @click="sendmsg">传递数据</button>
  </div>
</template>
<script>
export default {
  name: "menuchild",
  methods: {
    sendmsg() {
      //发送数据发布自定义数据携带数据
      this.EmitEvent.$emit("go-event", {
        name: "张三",
        age: 20
      });
    }
  },
  mounted() {
    this.EmitEvent.$on("go-left", function(res) {
      console.log(res);
    });
  }
};
</script>

右:

<template>
  <div id="contentinfo">
    我是右端的子组件
    <button @click="sendto">发送左边的数据</button>
  </div>
</template>
<script>
export default {
  name: "contentinfo",
  mounted() {
    //该组件渲染完成之后 自动监听自定义事件
    //new Vue对象
    this.EmitEvent.$on("go-event", function(result) {
      console.log(result);
    });
  },
  methods: {
    sendto() {
      this.EmitEvent.$emit("go-left", "abcdef");
    }
  }
};
</script>

简易表达:

// main.js
const BUS = new Vue()
Vue.prototype.BUS = BUS

// A.vue
this.BUS. e m i t ( ′ c h a n g e S i d e b a r ′ ) / / c h a n g e S i d e b a r 和 emit('changeSidebar') // changeSidebar和 emit(changeSidebar)//changeSidebaron处一致即可
// B.vue

mounted () {
  this.BUS.$on('changeSidebar', () => {
    this.isCollapse = !this.isCollapse
   })
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值