Files
dtx_store/utils/eventBus.js
2022-06-11 11:06:05 +08:00

8 lines
206 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Vue from 'vue'
/**
* 定义空的vue实例作为 goBackEntity实现非父子组件之间的通信(vue2.x中去掉了broadcast)
*/
var goBackEntity = new Vue({});
export default goBackEntity;