vue-quill
vue-quill copied to clipboard
[Deprecation] Listener added for a 'DOMNodeInserted' mutation event. Support for this event type has been removed, and this event will no longer be fired. See https://chromestatus.com/feature/5083947249172480 for more information.
Version "@vueup/vue-quill": "^1.2.0"
Describe the bug [Deprecation] Listener added for a 'DOMNodeInserted' mutation event. Support for this event type has been removed, and this event will no longer be fired. See https://chromestatus.com/feature/5083947249172480 for more information.
I have the same issue, any solution?
use in your package.json
"overrides": {
"quill": "^2.0.2"
},
use in your package.json
"overrides": { "quill": "^2.0.2" },
This is OK, it solves the problem, it is effective
This solution didn't work for me, I'm still getting the error. Is this library even being maintained anymore?
It didn't work for me too
@mohsenMJ @SkyAphid Different package managers have different configurations . you can see https://developer.aliyun.com/article/1050105
An "overrides" section also didn't work for me. I'm using yarn, so I added:
"resolutions": {
"quill": "^2.0.2"
},
This fixed the issue ... details here: https://classic.yarnpkg.com/en/docs/selective-version-resolutions/
I'm also experiencing this problem and can't solve it using the above method, has the library stopped being maintained?
If you are using pnpm, you could try adding this one on package.json
"pnpm": { "overrides": { "quill": "^2.0.2" } }
Is this library even being mantained anymore? Last version realease was a year ago.
Is this library even being mantained anymore? Last version realease was a year ago.
The lead contributor on this project hasn't pushed anything in a year period. Hopefully he's alright. As for quill itself, it got an update this year but that's it. That said, if you're making a small project, I personally still recommend this over everything else. I wanted to rid of this API from my project because it seemed to be dead, but there's not a single rich text editor out there for vue that's as simple and straight forward as this. The rest are insanely over-engineered and take a lot of time to set up and achieve what VueQuill can in less then ten lines of code.
My project is an offline/local oriented tool, so VueQuill works and does the trick just fine.
@SkyAphid Have you tried TipTap? It is very easy to use too.
@SkyAphid Have you tried TipTap? It is very easy to use too.
I tried Tiptap, but got frustrated with all of the setup it takes, on top of the fact that it wasn't playing nice VueFlow at all. The project was something I needed to get done quickly because it's basically just a tool for my main project. I'd be willing to give it another try eventually, but I'd need to find someone to mentor me through it since that project was also my first time ever learning/using VueJs/Javascript/CSS/HTML. The project is here if you want to take a look: https://github.com/SkyAphid/corkboard
Yea, here too. We need someone who can approve pull requests now :) To keep this going.
use in your package.json
"overrides": { "quill": "^2.0.2" },
I add this and it work, but why the 'code-block' in ToolBar lose its style?
both
"overrides": {
"quill": "^2.0.2"
},
and
"resolutions": {
"quill": "^2.0.2"
}
worked for me i'm using PNPM
I'm facing with this issue for a while. But still cant find the solution
overrides option not works on me
both
"overrides": { "quill": "^2.0.2" },and
"resolutions": { "quill": "^2.0.2" }worked for me i'm using PNPM
Thank you very much. It worked
Look at vue-quilly, it provides a Vue 3 bindings for Quill 2
https://github.com/alekswebnet/vue-quilly
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Using NPM - In package.json:
"overrides": {
"quill": "^2.0.2"
}
Did work for me, but only after deleting node_modules and package.json.lock and running npm install again.