You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I have nuxt project where i use "Quill editor", and I'm trying to add quill-html-edit-button like in example https://github.com/benwinding/quill-html-edit-button, but after rebuilding my app i've got "Super expression must either be null or a function, not undefined". Can you help me, please?
My code:
"quillEditor.js" imported like plugin in "nuxt.config"
import Vue from 'vue';
import VueQuillEditor from 'vue-quill-editor';
import Quill from 'quill'
import ImageResize from 'quill-image-resize-vue'
import VideoResize from 'quill-video-resize-module';
import {ImageUpload} from 'quill-image-upload';
import htmlEditButton from "quill-html-edit-button";
Quill.register('modules/ImageResize', ImageResize);
Quill.register('modules/VideoResize', VideoResize);
Quill.register('modules/imageUpload', ImageUpload);
Quill.register('modules/htmlEditButton', htmlEditButton);
Vue.use(VueQuillEditor);
Hi! I have nuxt project where i use "Quill editor", and I'm trying to add quill-html-edit-button like in example https://github.com/benwinding/quill-html-edit-button, but after rebuilding my app i've got "Super expression must either be null or a function, not undefined". Can you help me, please?
My code:
"quillEditor.js" imported like plugin in "nuxt.config"
component
packege.json
The text was updated successfully, but these errors were encountered: