1. 事件车
在项目中创建eventBus.js文件
在 eventBus.js文件中;
在兄弟组件a 和 b中
import bus from '../../utils/Bus/eventBus'; 引入你自己的eventBus.js文件地址
在a组件中向b组件传值
methods:{
//获取所有已发起
getAllMytask() {
bus.$emit('sendBybusYourValue',this.allTotal) ; //sendBybusYourValue 是id,在兄弟组件b中通过这个接收 }
}
b组件接收
mounted () {
bus.$on(`sendBybusYourValue`,data=>{
this.numberTotal =String(data) ;
});
},