BillBie

导航

2022年5月14日 #

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) 编辑

vue在子组件向父组件emit时,父组件会警告;

摘要: Extraneous non-emits event listeners (swiperimageload) were passed to component but could not be automatically inherited because component renders fra 阅读全文

posted @ 2022-05-14 00:55 BillBie 阅读(787) 评论(0) 推荐(0) 编辑