1、在main.js里加上
new Vue({ render: h => h(App), //事件总线 beforeCreate() { Vue.prototype.$bus = this } }).$mount('#app')
2、
发送事件
在发送事件的组件中,你可以使用this.$emit方法触发一个事件,并传递所需的参数
// ComponentA.vue
3、在需要接收事件的组件中,使用this.x.$on方法监听事件,并定义响应的处理函数:
// ComponentB.vue {{ message }}
还没有评论,来说两句吧...