We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<QuillEditor v-model:content="form.content" :toolbar="toolbar" :modules="modules" ref="qlEditorRef" content-type="html" theme="snow" style="height: 250px; overflow: hidden;" /> import { QuillEditor } from '@vueup/vue-quill' import BlotFormatter from 'quill-blot-formatter'; import ImageUploader from "quill-image-uploader"; import '@vueup/vue-quill/dist/vue-quill.snow.css'; const toolbar = [ [{ 'align': [ '', 'center', 'right', 'justify'] }], ['image'] ] const modules = [ { name: 'imageUploader', module: ImageUploader, options: { name: 'image', upload: file => { console.log(file) return new Promise((resolve, reject)=>{ setTimeout(() => { resolve('https://bt-hangzhou.oss-cn-hangzhou.aliyuncs.com/jungong/20230627/test2a341f04c96084c0e8775d78361be088b.jpg') }, 3500); }) } } } ]
"quill": "^1.3.7", "quill-blot-formatter": "^1.0.5", "quill-image-uploader": "^1.3.0", 报这个错怎么解决,救救我
The text was updated successfully, but these errors were encountered:
Have you tried to add formats: [... , 'imageBlot'] ?
formats: [... , 'imageBlot']
Sorry, something went wrong.
No branches or pull requests
"quill": "^1.3.7",
"quill-blot-formatter": "^1.0.5",
"quill-image-uploader": "^1.3.0",
报这个错怎么解决,救救我
The text was updated successfully, but these errors were encountered: