quill-plugin-image-upload
quill-plugin-image-upload copied to clipboard
A plugin for uploading image in Quill 🌇
I managed to use this plugin to successfully upload images through Quill. However, when I try to display the contents from a database after saving, the image loads inside the...
It would be great if this plugin gives an option to add an alt description for the image (mostly for SEO purposes)
How to implement with **[https://github.com/KillerCodeMonkey/ng-quill](https://github.com/KillerCodeMonkey/ng-quill)** ``
```js imageUpload: { upload: file => { return new Promise((resolve, reject) => { // resolve('https://img.xhuijia.com/bulletin/uXhOzZFFxDiFaIUteDlRtkcz2ZW3lgCjNYrbvqya.jpeg') let formData = new FormData() formData.append('file', file) formData.append('dir', 'bulletin') axios({ url: `/file/upload`, method: 'post', config:...