Socket
Book a DemoInstallSign in
Socket

@syncfusion/ej2-vue-richtexteditor

Package Overview
Dependencies
Maintainers
3
Versions
315
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-vue-richtexteditor

Essential JS 2 RichTextEditor component for Vue

Source
npmnpm
Version
31.2.5
Version published
Weekly downloads
3.7K
-2.57%
Maintainers
3
Weekly downloads
 
Created
Source

Vue Rich Text Editor Component | Vue Markdown Editor

The Vue Rich Text Editor is a feature-rich WYSIWYG HTML editor and Markdown editor. The Rich Text Editor is widely used to create blogs, forum posts, notes sections, comment sections, messaging applications, and more. The control provides an efficient user interface for a better editing experience with mobile support. It has a variety of tools to edit and format rich content, and it return a valid HTML markup or Markdown (MD) content. It allows users to insert images, links, tables, media files and lists with modular architectures.

📖Getting started🚀Online demos🌐Learn more

Vue RichTextEditor Component

Trusted by the world's leading companies Bootstrap logo

⚡️ Quick Start

Syncfusion ® Rich Text Editor is easy to integrate into Vue 2 applications. Just install the package, configure styles, register the component, inject required modules, and render the editor.

🛠️ Installation

All Syncfusion® Vue packages are published in npmjs.com registry. To install Vue Rich Text Editor package, use the following command.

npm install @syncfusion/ej2-vue-richtexteditor --save

This command will:

  • Add the @syncfusion/ej2-vue-richtexteditor package and its peer dependencies to your package.json file.

⚙️ Setup

1. Create a Vue Application

You can use Vue CLI to setup your Vue 2 applications.To install Vue CLI use the following commands.

npm install -g @vue/cli
vue create quickstart
cd quickstart
npm run serve

💡 Initiating a new project prompts us to choose the type of project to be used for the current application. Select the option Default ([Vue 2] babel, eslint) from the menu.

2. Add CSS References

Add CSS references needed for Rich Text Editor in style section of the App.vue file from ../node_modules/@syncfusion package folder.

<style>
    @import "../node_modules/@syncfusion/ej2-base/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-inputs/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-lists/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-popups/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-buttons/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-navigations/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-splitbuttons/styles/bootstrap5.css";
    @import "../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/bootstrap5.css";
</style>

🧩 Register the Rich Text Editor Component

Register the Rich Text Editor globally using Vue.use():

import { RichTextEditorPlugin } from '@syncfusion/ej2-vue-richtexteditor';
Vue.use(RichTextEditorPlugin);

ℹ️ Note:

RichTextEditorPlugin will globally register the Rich Text Editor component and its child directives. For detailed information on module injection, refer to the Documentation

🧩 Add the Rich Text Editor Component

Add the Vue Rich Text Editor by using ejs-richtexteditor selector in template section of the App.vue file.

<template>
    <ejs-richtexteditor ref="defaultRTE" :height="400">
       <p>Start editing your content here.</p>
    </ejs-richtexteditor>
</template>

<script>
    import Vue from "vue";
    import { RichTextEditorPlugin, Toolbar, Link, Image, Count, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";

    Vue.use(RichTextEditorPlugin);

    export default {
        provide: {
            richtexteditor:[Toolbar, Link, Image, Count, HtmlEditor, QuickToolbar]
        }
    }
</script>

<style>
@import "../node_modules/@syncfusion/ej2-base/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-inputs/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-lists/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-popups/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-buttons/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-navigations/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-splitbuttons/styles/bootstrap5.css";
@import "../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/bootstrap5.css";
</style>

Refer the Getting Started with Vue3 for using Syncfusion® Vue components in Vue 3 applications.

🛠️ Supported frameworks

Rich Text Editor component is also offered in the following frameworks.


     JavaScript    

       Angular      

       React      

       ASP.NET Core  

  ASP.NET MVC  

🏗️ Showcase samples

✨ Key features

  • Edit mode - HTML content is possible to edit in a div element or an iframe in the rich text editor.

  • @Mentions - Easily mention users, tags, or items with an autocomplete suggestion list.

  • Slash Menu Support - Quickly insert content blocks using the / command.

  • Checklist Suport - Allows users to create checklists (to-do lists) directly within the editor. Users can easily add interactive checkbox items to their content.

  • Accessibility & WCAG 2.0 Compliance - Ensures full accessibility support, making it user-friendly for people who rely on assistive technologies (AT) or keyboard navigation.

  • Preventing Cross-Site Scripting (XSS) - The Rich Text Editor allows users to edit the content with security by preventing cross-site scripting (XSS).

  • HTML code editing - The rich text editor allows users to edit the HTML code directly in the HTML code view. This can be useful for users who are familiar with HTML and want to have more control over the formatting and layout of their content.

  • Markdown editor - The rich text editor allows you to edit Markdown content using the Markdown syntax.

  • Markdown content preview - Preview of the modified Markdown content in the editor, you can give users the ability to see what the formatted content will look like before they save it.

  • Tools - The rich text editor handles a wide range of features, including inserting images, hyperlinks, tables, formatting tools, and more.

  • Toolbar appearance - The rich text editor can provide a fully customizable toolbar that allows users to access the various formatting and editing options that are available.

  • Export and Import - Supports exporting content to PDF, and Word formats.

  • Copy and paste - Copy and paste from Microsoft Word, Outlook, or other editors or sources while preserving formatting, styles, and structure.

  • Undo and redo - Users can use undo and redo actions to reverse or repeat actions they took while editing the content.

  • Module injection - It is possible to create a editor that utilizes a modular library to load the necessary functionality on demand. This can be useful for optimizing the performance of the editor.

  • Third-party integration - It is possible to integrate a third-party library into a rich text editor to add additional functionality or features to the editor like Code-mirror, Embedly and more.

📚 Resources

🤝 Support

Product support is available through following mediums.

🔄 Change log

Check the changelog here. Get minor improvements and bug fixes every week to stay up to date with frequent updates.

This is a commercial product and requires a paid license for possession or use. Syncfusion® licensed software, including this component, is subject to the terms and conditions of Syncfusion® EULA. To acquire a license for 140+ Vue UI components, you can purchase or start a free 30-day trial. A free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers. See LICENSE FILE for more info.

© Copyright 2025 Syncfusion® Inc. All Rights Reserved. The Syncfusion® Essential Studio® license and copyright applies to this distribution.

Keywords

vue-rich-text-editor

FAQs

Package last updated on 04 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts