事件总线:
就是创建一个事件中心,相当于中转站,可以用它来传递事件和接收事件

1.创建全局空Vue实例:eventBus

import Vue from 'vue';
const eventBus= new Vue()  //创建事件总线
export default eventBus;

2.具体页面使用$emit发布事件 - 传递值

import eventBus from '@u/eventBus'
eventBus.$emit('send',‘hello’)

3.具体页面使用$on订阅事件 - 接收组件值

import eventBus from '@u/eventBus'
eventBus.$on('send', msg => {
	console.log(msg)  //控制台输出 hello
}

4.$off()移除事件监听

import eventBus from '@u/eventBus'
eventBus.$off('send')

事件订阅功能\(on是\)eventBus对象完成的,与组件无关,如果用v-if销毁子组件的时候,会形成闭包,造成内存泄露,所有要在销毁组件的时候进行取消监听事件

05-28 11:18