🧩 Maintained fork of vueup/vue-quill
✨ Updated for Quill v2 compatibility.
If you have @types/quill installed, uninstall it, as it is no longer needed
npm i vue-quill-nexthttps://www.npmjs.com/package/vue-quill-next
main.ts
import { createApp } from 'vue'
import App from './App.vue'
import {QuillEditor} from 'vue-quill-next'
import 'vue-quill-next/dist/vue-quill.snow.css';
const app = createApp(App)
app.component('QuillEditor', QuillEditor);
app.mount('#app')App.vue
<div id="app">
<quill-editor theme="snow" />
</div>VueQuill is a Component for building rich text editors, powered by Vue 3 and Quill.
- 💚 Built With Vue 3: More powerful and performant framework than ever before.
- 🧙♂️ Fully Typescript: VueQuill source code is written entirely in TypeScript.
- 🛠️ Easy To Use: Straightforward implementation through a simple API.
- Release
alphaversion - Release
betaversion - Stable
v1.0.0release - Enhance TypeScript support with Vue 3
- Update the Documentation with more examples and more information
Pull requests are welcome. For major changes, please create a new discussion first about what you would like to change.