vue3定义全局变量方法变更及$on废弃
摘要:
在vue2中,直接 Vue.prototype.$bus = new Vue() 但是在vue3中,方法改变了(因为$on方法的废弃,需要用到mitt) const app = createApp(App) app.config.globalProperties.$bus = new mitt(); 阅读全文
posted @ 2022-05-14 01:11 BillBie 阅读(1445) 评论(0) 推荐(0) 编辑