vue中使用 事件车$bus
npm install vue-bus --save
main.js文件夾中引用
import VueBus from ‘vue-bus’;
Vue.use(VueBus);
1. this.$bus.emit('changeY',1)
2. this.$bus.on('changeY',(data)=>{
//传值之后的事件处理
})
3.this.$bus.off('changeY',1)
以上
emit ,传值
on 接收传值 进行事件处理
off 关闭 传值 事件,因为 会多次处理 解决冗余