Cannot read properties of undefined (reading '$on') TypeError: Cannot read properties of undefined (reading '$on')
时间: 2023-11-14 08:11:21 浏览: 1048
处理JavaScript值为undefined的7个小技巧
这个错误通常是因为你在使用Vue的事件总线时没有正确地创建它。根据引用中提供的解决方法,你需要在main.js中添加代码 `Vue.prototype.$bus = new Vue()` 来创建一个事件总线。如果你已经添加了这行代码,那么可能是因为你在使用事件总线之前没有正确地引入它。请确保你在使用事件总线之前已经正确地引入了它。
阅读全文