一种组件间通信的方式,适用于任意组件间通信
安装全局事件总线
new Vue({
......
beforeCreate() {
Vue.prototype.$bus = this //安装全局事件总线,$bus就是当前应用的vm
},
......
})
使用事件总线:
接收数据:A组件想接收数据,则在A组件中给$bus绑定自定义事件,事件的回调留在A组件自身
methods(){
demo(data){......}
}
......
mounted() {
this.$bus.$on('xxxx',this.demo)
}
提供数据:this.$bus.$emit('xxxx',数据)
最好在beforeDestroy钩子中,用$off去解绑当前组件所用到的事件
为什么我这里全局事件总线叫 bus 呢?你品,你细品!
1.
①想绑定自定义事件必须能调用 o n 、 on、 on、emit、$off
②那就是vc (VueComponent 组件)或者vm (VueModel Vue实例)
③首先确认vc能实现吗?想啥呢?肯定能啊!(extend)
const vmDemo = Vue.extend({}) // 调用基础 Vue 构造器,创建一个“子类”
const zx = new vmDemo() // 实例化一个组件
Vue.prototype.zx = zx // 挂Vue原型上充当全局事件总线
new Vue({
el:'#app',
render: h => h(App)
})
④那vm行吗?vc都行,vm能不行吗?
new Vue({
el:'#app',
render: h => h(App),
beforeCreate(){
Vue.prototype.zx = this
}
})
⑤结果似乎很明显啊,如果是聪明的你,你会选用vc还是vm呢?
⑥什么?你选vc?!赐死!
//引入Vue
import Vue from 'vue'
//引入App
import App from './App.vue'
//关闭Vue的生产提示
Vue.config.productionTip = false
//创建vm
new Vue({
el:'#app',
render: h => h(App),
beforeCreate(){
Vue.prototype.$bus = this
}
})
你好啊
学校名称:{{name}}
学校地址:{{address}}
学生姓名:{{name}}
学生性别:{{sex}}
只修改了 main.js和含有跨层传递的 App.vue 、TodoList.vue、TodoItem.vue(此处只粘贴变更追加的代码)
new Vue({
el:'#app',
render: h => h(App),
beforeCreate(){
// 安装全局事件总线
Vue.prototype.$bus = this
}
})
-