共计 228 个字符,预计需要花费 1 分钟才能阅读完成。
// main.js 文件
// 全局 event bus
Vue.prototype.$eventHub = new Vue();
// a.js 接收参数的文件
_self = this
// 监听 全局 event bus
this.$eventHub.$on('mobileBack',function(_data){
_self.phoneno = _data;
});
// b.js 发送参数的文件
// 发送全局消息
this.$eventHub.$emit('mobileBack','66666');
正文完