在组件1中调用组件2中的方法
组件1:
this.$bus.$emit("change_event", "参数")
mounted () { this.$bus.$on('change_event', (参数) => { // 需要调用的方法 this.init() }) }