摘要: 全局事件总线——就是用来组件间通信使用的;可以理解为事件订阅 main.js就一行代码 Vue.prototype.$bus = new Vue() 1、组件种订阅 this.$bus.on(eventName, function(params){}) 2、组件中发布 this.$bus.$emit 阅读全文
posted @ 2023-08-17 17:14 Math点PI 阅读(14) 评论(0) 推荐(0)