• 2025-01-05Vue cli 全局事件总线
    一、优点任意组件间通讯二、安装全局事件总线mian.js,使用生命周期钩子beforeCreatenewVue({el:'#app',render:h=>h(App),//生命周期钩子beforeCreate(){Vue.prototype.$bus=this},})三、使用全局事件组件B组件传递数据给A组件