Getting Started with Vue Rich Text Editor
30 Jul 20265 minutes to read
The Vue Rich Text Editor is a WYSIWYG (What You See Is What You Get) editor that enables users to create, edit, and format rich text content with features like multimedia insertion, lists, and links. This article provides a step-by-step guide for setting up a Vite project with a TypeScript environment and integrating the Vue Rich Text Editor component using the Composition API.
To get started quickly with the Vue Rich Text Editor, refer to this video tutorial:
Prerequisites
This guide uses Vite as the bundler and development environment. Install Node.js 24.13.0 or higher before proceeding. For detailed information about Vite’s capabilities and configuration options, refer to the Vite documentation.
NOTE
For information about supported Vue versions and Syncfusion package compatibility, refer to the Version Compatibility documentation.
Create a Vue Application
To set up a Vue application, run the following command.
npm create vite@latest my-app -- --template vue-tsThis command will prompt you to install the required packages and start the application. Select the options as shown below.

Since the Syncfusion packages are not installed at this stage, choose the No option when prompted. Then, navigate to the project directory and install the dependencies using the following commands:
cd my-app
npm installAdding Syncfusion Rich Text Editor package
All available Essential JS 2 packages are published in the npmjs.com registry. Install the Vue Rich Text Editor component with the following command:
npm install @syncfusion/ej2-vue-richtexteditorAdding CSS reference
Syncfusion provides multiple themes for the Rich Text Editor component. For a complete list of available themes, refer to the themes packages.
To apply the Tailwind 3 theme, install the corresponding theme package by using the following command:
npm install @syncfusion/ej2-tailwind3-themeThe installed theme package includes an index.css file that automatically imports all the required dependency styles. Import the following stylesheet into src/style.css.
@import '../node_modules/@syncfusion/ej2-tailwind3-theme/styles/rich-text-editor/index.css';IMPORTANT
To apply the application-specific styles correctly remove all the default styles from src/style.css.
Module Injection
The following modules provide the basic features of the Rich Text Editor.
- HtmlEditor - Inject this module to use the Rich Text Editor as HTML editor.
- Image - Inject this module to use the image feature in Rich Text Editor.
- Link - Inject this module to use the link feature in Rich Text Editor.
- QuickToolbar - Inject this module to use the quick toolbar feature for the target element.
- Toolbar - Inject this module to use the Toolbar feature.
These modules can be injected as services using Vue’s provide function as demonstrated in the following example.
<template>
<div>
<ejs-richtexteditor></ejs-richtexteditor>
</div>
</template>
<script setup>
import { provide } from 'vue';
import { RichTextEditorComponent as EjsRichtexteditor, Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";
provide('richtexteditor', [Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar]);
</script><template>
<div>
<ejs-richtexteditor></ejs-richtexteditor>
</div>
</template>
<script>
import { RichTextEditorComponent, Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";
export default {
name: "App",
components: {
"ejs-richtexteditor": RichTextEditorComponent,
},
provide: {
richtexteditor: [Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar],
},
};
</script>TIPS
Additional feature modules are available here.
Adding Rich Text Editor component
Now, you can start adding the Vue Rich Text Editor component in the application. For getting started, add the Rich Text Editor component in src/App.vue file using the following sample.
<template>
<div>
<ejs-richtexteditor></ejs-richtexteditor>
</div>
</template>
<script setup>
import { provide } from 'vue';
import { RichTextEditorComponent as EjsRichtexteditor, Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";
provide('richtexteditor', [Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar]);
</script><template>
<div>
<ejs-richtexteditor></ejs-richtexteditor>
</div>
</template>
<script>
import { RichTextEditorComponent, Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";
export default {
name: "App",
components: {
"ejs-richtexteditor": RichTextEditorComponent,
},
provide: {
richtexteditor: [Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar],
},
};
</script>@import '../node_modules/@syncfusion/ej2-tailwind3-theme/styles/rich-text-editor/index.css';Run the application
Use the following command to run the application in the browser.
npm run devThe Syncfusion® Vue Rich Text Editor is displayed in the browser as shown below.

See also
- Accessibility in Rich Text Editor
- Keyboard support in Rich Text Editor
- Globalization in Rich Text Editor
For migrating from Vue 2 to Vue 3, refer to the migration documentation.