Loading

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