vue-quill-editor TypeError: Cannot read properties of undefined (reading '_c')
时间: 2024-06-20 13:03:35 浏览: 323
Sawyer-zh#study-note#Vue-js路由报错TypeError-Cannot-read-property-c-
这个错误通常发生在使用vue-quill-editor时,可能是因为以下原因之一:
1.没有安装或者导入Vue.js
2.没有安装或者导入quill.js
3.没有正确地初始化Vue.js和quill.js
4.没有正确配置vue-quill-editor组件
以下是解决方法:
1. 确认已经安装了Vue.js和quill.js,并正确地导入它们。
2. 在Vue.js的组件中,使用`mounted()`钩子函数对quill进行初始化。
3. 检查`vue-quill-editor`组件的配置项是否正确,并确保正确绑定了数据模型。
4. 确认你的HTML中已经引入了相关的CSS文件。
阅读全文