vue-quill
vue-quill copied to clipboard
Unable to add custom modules.
Version @vueup/vue-quill version [e.g. 1.0.0-beta.5]
Describe the bug I have tried the same example but I am getting an error
Expected behavior add of the module
Browser (please complete the following information): chrome
Additional context I am adding the error log here
Uncaught TypeError: Cannot convert undefined or null to object
at Function.assign (
I got this error too, here's what fixed it for me:
- <QuillEditor theme="snow" v-model:content="content" :modules="modules" />
+ <QuillEditor theme="snow" v-model:content="content" :modules="modules" toolbar="full" />
Looks like not using toolbar="full"
doesn't allow the modules to be added or something...
Got this error too, and reinstalling the @vueup/[email protected] helped fix it
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.