Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

madprabh's avatar

Anyone use Quill (text editor) with vue3 (especially jetstream+inertia)

Hey Everyone,

I am exploring Quill WYSIWYG editor for my current project and wanted to understand if anyone has experience using this editor with jetstream+inertia stack.

It would really help me to get a start point on this. A lot has changed from vue 2 to vue 3 and I have been struggling to integrate Quill with the jetstream+inertia stack.

Best, Madhu

0 likes
1 reply
juliobitencourt's avatar

It's really simple.

Just install the vue quill library following the instructions.

In your component, import the lib

import { QuillEditor } from '@vueup/vue-quill'
import '@vueup/vue-quill/dist/vue-quill.snow.css';

And use it in your template

<QuillEditor v-model:content="form.content" contentType="html" theme="snow" />
4 likes

Please or to participate in this conversation.