mittBus Uncaught (in promise) TypeError: Cannot convert undefined or null to object
时间: 2024-01-03 14:20:17 浏览: 79
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#Object‘的解决方法
根据提供的引用内容,这个错误可能是由于在使用mittBus时,传入的参数为undefined或null导致的。mittBus是一个用于事件处理的JavaScript库,它提供了on、off、emit等方法来处理事件。在使用mittBus时,需要传入一个对象作为参数,如果传入的参数为undefined或null,就会出现这个错误。解决方法是检查传入的参数是否为undefined或null,如果是,就不要调用mittBus的方法。
阅读全文