使用vue-quill报错:[Deprecation] Listener added for a 'DOMNodeInserted' mutation

262 阅读1分钟

[Deprecation] Listener added for a 'DOMNodeInserted' mutation event. Support for this event type has been removed, and this event will no longer be fired. 

有issue在讨论:

github.com/vueup/vue-q…

个人尝试到可以生效的解决方案是:

修改package.json,增加:

 "dependencies": {    "quill": "^2.0.2",  },  "resolutions": {    "quill": "^2.0.2"  },  "overrides": {    "quill": "^2.0.2"  },

然后把lock文件删除,重新install

强行把依赖的quill改成2.0以上