在组件1中调用组件2中的方法
组件1:
this.$eventbus.$emit("change_event", "参数")
mounted () { this.$eventbus.$on('change_event', (参数) => { // 需要调用的方法 this.init() }) }
ps:需要在main.js中引入,有空在写