1、创建eventBus.ts 实例化vue对象
import Vue from 'vue'
export default new Vue({})
2.父组件监听
eventBus.$on('getReportLists', this.getReportLists)
3.子组件触发
eventBus.$emit('getReportLists')
1、创建eventBus.ts 实例化vue对象
import Vue from 'vue'
export default new Vue({})
2.父组件监听
eventBus.$on('getReportLists', this.getReportLists)
3.子组件触发
eventBus.$emit('getReportLists')