vue项目中不同组件间通信一般使用vuex,通常情况下vuex和EventBus不应该混用,不过某些场景下不同组件间只有消息的交互,这时使用EventBus消息通知的方式就更合适一些。 图解 html <body> [removed][removed] [removed] const app = new DVue({ data: { test: "I am test", foo: { bar: "bar" } } }) app.$data.test = "hello world!" // app