vue-quill-editor.js:1 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '_c')
时间: 2023-07-08 22:52:58 浏览: 1725
Vue打包Cannot read property 'tapPromise' of undefined报错处理.docx
5星 · 资源好评率100%
这个错误通常是因为在使用vue-quill-editor时没有正确引用依赖关系,或者引用的依赖关系不兼容导致的。建议检查以下几个方面:
1. 确保你已经正确引用了Vue和vue-quill-editor的依赖关系,可以尝试重新安装依赖来解决问题:
```
npm install vue
npm install vue-quill-editor
```
2. 确认你的Vue版本是否与vue-quill-editor兼容,可以在vue-quill-editor的官方文档中查看兼容性信息。
3. 如果以上步骤都没有解决问题,可以尝试升级或降级Vue、vue-quill-editor的版本。
同时,也可以尝试在开发过程中输出更多的错误信息,以便更好地定位问题所在。
阅读全文