I have defined a matcher function that changes all headings to h1 headings and referenced it in the options object.
I also have a modules object.
The matcher works perfectly fine if I pass just :options alone without :modules prop. Also my custom toolbar is shown correctly.
As soon as I add :modules="modules", my custom image upload handler is working fine, but now the matcher function is not even fired when pasting a heading. Furthermore, my custom toolbar is not there anymore.
But when I pass modules prop, the matcher is not even fired anymore and custom toolbar is gone. The image upload handler from the :modules prop is working fine tough:
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.
I have defined a matcher function that changes all headings to h1 headings and referenced it in the options object. I also have a modules object.
The matcher works perfectly fine if I pass just
:options
alone without:modules
prop. Also my custom toolbar is shown correctly.As soon as I add
:modules="modules"
, my custom image upload handler is working fine, but now the matcher function is not even fired when pasting a heading. Furthermore, my custom toolbar is not there anymore.With this setup the matcher is working fine and my custom toolbar is shown:
But when I pass modules prop, the matcher is not even fired anymore and custom toolbar is gone. The image upload handler from the :modules prop is working fine tough:
I am using @vueup/vue-quill version 1.1.0
Thanks for any help!