其他分享
首页 > 其他分享> > vue的事件总线BUS

vue的事件总线BUS

作者:互联网

eventBus/index.js

import Vue from 'vue';  
export default new Vue(); 

需要使用的页面

js
`import Bus from '@/components/eventBus';`
methods:{
    execute() {
      Bus.$emit('EtpCode',this.currentRow.EtpCode);// 调用事件总线的函数
    },
}

需要执行函数的页面

js
`import Bus from '@/components/eventBus';`
mounted() {
    Bus.$on('EtpCode', (EtpCode) => {
      ...... // 方法的具体操作
    });
}

标签:vue,BUS,总线,js,Vue,Bus,EtpCode,import,eventBus
来源: https://www.cnblogs.com/axingya/p/16305389.html