Vue 全局事件总线

安装全局事件总线

在main.js中写入如下代码
beforeCreate () {
    Vue.prototype.$bus = this //安装全局事件总线
  }

触发事件




接收事件




你可能感兴趣的:(Vue 全局事件总线)