vue-quill icon indicating copy to clipboard operation
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.

Open devxtools opened this issue 1 year ago • 13 comments

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.

image

devxtools avatar Aug 26 '24 06:08 devxtools

I have the same issue, any solution?

mohsenMJ avatar Aug 27 '24 12:08 mohsenMJ

use in your package.json

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

ghost avatar Aug 28 '24 20:08 ghost

use in your package.json

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

This is OK, it solves the problem, it is effective

devxtools avatar Aug 29 '24 03:08 devxtools

This solution didn't work for me, I'm still getting the error. Is this library even being maintained anymore?

SkyAphid avatar Sep 01 '24 01:09 SkyAphid

It didn't work for me too

mohsenMJ avatar Sep 01 '24 06:09 mohsenMJ

@mohsenMJ @SkyAphid Different package managers have different configurations . you can see https://developer.aliyun.com/article/1050105

zhoupeng260641663 avatar Sep 09 '24 06:09 zhoupeng260641663

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/

dmarko484 avatar Sep 10 '24 09:09 dmarko484

I'm also experiencing this problem and can't solve it using the above method, has the library stopped being maintained?

FXAZfung avatar Sep 28 '24 01:09 FXAZfung

If you are using pnpm, you could try adding this one on package.json "pnpm": { "overrides": { "quill": "^2.0.2" } }

Jhomalex avatar Oct 09 '24 05:10 Jhomalex

Is this library even being mantained anymore? Last version realease was a year ago.

crownAzaf avatar Oct 11 '24 16:10 crownAzaf

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 avatar Oct 11 '24 20:10 SkyAphid

@SkyAphid Have you tried TipTap? It is very easy to use too.

davision avatar Oct 14 '24 11:10 davision

@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

SkyAphid avatar Oct 16 '24 04:10 SkyAphid

Yea, here too. We need someone who can approve pull requests now :) To keep this going.

nycynik avatar Nov 17 '24 08:11 nycynik

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?

ASHUIMEI avatar Nov 26 '24 07:11 ASHUIMEI

both

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

and

  "resolutions": {
    "quill": "^2.0.2"
  }

worked for me i'm using PNPM

amomammadw avatar Dec 19 '24 17:12 amomammadw

I'm facing with this issue for a while. But still cant find the solution

pranaycb avatar Dec 21 '24 05:12 pranaycb

overrides option not works on me

bilalmalkoc avatar Jan 07 '25 13:01 bilalmalkoc

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

Dbdjfr avatar Jan 20 '25 06:01 Dbdjfr

Look at vue-quilly, it provides a Vue 3 bindings for Quill 2 https://github.com/alekswebnet/vue-quilly

alekswebnet avatar Jan 27 '25 13:01 alekswebnet

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.

stale[bot] avatar Apr 20 '25 16:04 stale[bot]

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.

stormcrow85 avatar May 19 '25 19:05 stormcrow85