摘要:
一种组件间通信方式,适用于任意组件间通信。 ##使用步骤 1.安装pubsub: npm i pubsub-js 2.引入:import pubsub from 'pubsub-js' 3.接收数据:A组件想接收数据,则在A组件中订阅消息,订阅的回调留在A组件自身。pubsub.subscribe( 阅读全文
摘要:
#全局事件总线 一种组件间的通信方式,适用于任意组件间通信。 ##使用方式 1.安装全局事件总线 new Vue({ render: h => h(App), beforeCreate() { Vue.prototype.$bus = this } }).$mount('#app') 2.使用事件总 阅读全文