diff --git a/docs/content/guide/modules.md b/docs/content/guide/modules.md
index 2214fcf6..e6734e9b 100644
--- a/docs/content/guide/modules.md
+++ b/docs/content/guide/modules.md
@@ -41,6 +41,58 @@ export default defineComponent({
})
~~~
+## Example using quill-image-uploader
+In this example I am gonna use [quill-image-uploader](https://github.com/NoelOConnell/quill-image-uploader), A module for Quill rich text editor to allow images to be uploaded to a server instead of being base64 encoded.
+
+
+**Installation:**
+``` bash
+npm install quill-image-uploader --save
+```
+**Usage:**
+
+~~~ vue
+
+
+
+
+
+~~~
See [Quill modules docs](https://quilljs.com/docs/modules/) for more details.