Getting Started with Vue DOCX Editor (Vue 3)
19 Aug 20267 minutes to read
This article provides a step-by-step guide for setting up a Vite project with integrating the Vue DOCX Editor (Document Editor) component using the Composition API or Options API.
Prerequisites
- Node.js 24+ (LTS recommended).
- Syncfusion CLI.
Install the Syncfusion CLI
Install the Syncfusion CLI globally using the following command:
npm install -g @syncfusion/syncfusion-cliSet up the Vite project using Syncfusion CLI
You can create a Vue application with Vite using the Syncfusion CLI. The CLI provides two ways to create a project:
Non-interactive mode
Non-interactive mode allows you to create a project directly using a single command with the required command-line arguments.
sf new syncfusion-vue-app --framework vue --template DOCX-Editor --theme tailwind3In this mode, the project configuration is passed directly in the command. The above command creates a Vue application with Vite and configured it with the Syncfusion® DOCX Editor component. The generated project uses the TypeScript and the Composition API.
Interactive mode
Interactive mode guides you through the project creation process with step-by-step prompts.
sfWhen you run the sf command, the CLI prompts you to select the required project configuration options. To create a Vue application with Vite and the Syncfusion® DOCX Editor component, select the following options:
√ Project name? ... syncfusion-vue-app
√ Choose Framework: » Vue
√ Choose Language: » JavaScript
√ Choose Template: » DOCX-Editor
√ Choose Theme: » Tailwind3
√ Choose Style Format: » CSS
√ Would you like to integrate the Syncfusion MCP Server (AI Assistant) into this project? ... no
√ Would you like to install Syncfusion Component Skills for AI-powered development? ... no
√ Install dependencies and start app now? ... noThe above selections generate a Vue application with Vite and configure it with the Syncfusion® DOCX Editor component. You can choose different values for language, theme, style format, MCP setup, and skills installation based on your project requirements.
The Syncfusion® CLI creates the project with a predefined template. After the project is generated, you can customize or replace the component code based on your application requirements.
Run the project
Once the project is created, navigate to the project directory and run the following commands in your terminal.
cd syncfusion-vue-app
npm install
npm run devThe output will appear as follows:

Prerequisites
Create a Vue application
Use Vite to quickly scaffold a Vue 3 project. Run one of the following commands to create a new project:
npm create vite@latest
or
yarn create vite
After running the command, follow the interactive prompts shown below to configure the project:
Step 1: Define the project name: Specify the project name directly. This guide uses documenteditor-app.
? Project name: » documenteditor-app
Step 2: Select Vue as the framework to target Vue 3.
? Select a framework: » - Use arrow-keys. Return to submit.
Vanilla
> Vue
React
Preact
Lit
Svelte
Others
Step 3: Choose JavaScript as the variant to build the Vite project with JavaScript and Vue.
? Select a variant: » - Use arrow-keys. Return to submit.
> JavaScript
TypeScript
Customize with create-vue ↗
Nuxt ↗
Step 4: After the scaffold completes, install the project dependencies:
cd documenteditor-app
npm install
or
cd documenteditor-app
yarn install
Install the DOCX Editor packages
The DOCX Editor package is available in the public npm registry and can be installed directly from npmjs.com.
To install the DOCX Editor component, use the following command:
npm install @syncfusion/ej2-vue-documenteditor --save
Register a Syncfusion License Key
Before initializing the Vue DOCX Editor control, generate a Syncfusion license key and register it in your application.
Import the required CSS styles
Themes for DOCX Editor can be applied using CSS or SASS files from the npm theme packages, CDN, CRG, or Theme Studio. For more information, see the themes documentation.
This guide uses the Tailwind 3 theme as an example, sourced from the theme package. In this package, each component includes an index.css file that automatically loads all the required dependency styles. To install the Tailwind 3 theme package, use the following command:
npm install @syncfusion/ej2-tailwind3-theme
By default, projects include an src/App.Vue file with default styles. These default styles may conflict with Syncfusion component styles. Clear all content from the <style> section of the App.vue to prevent style conflicts.
The required styles for the DOCX Editor are imported in the <style> section of the src/App.Vue
@import "../node_modules/@syncfusion/ej2-tailwind3-theme/styles/document-editor/index.css";
@import "../node_modules/@syncfusion/ej2-tailwind3-theme/styles/document-editor-container/index.css";Initialize the DOCX Editor
Import and register the DOCX Editor component in the <script> section of src/App.vue. If you use the Composition API, add the setup attribute to the <script> tag. Then, define the component in the <template> section.
<template>
<ejs-documenteditorcontainer
height="590px"
:serviceUrl="serviceUrl"
:enableToolbar="true">
</ejs-documenteditorcontainer>
</template>
<script setup>
import { provide } from 'vue';
import { DocumentEditorContainerComponent, Toolbar } from '@syncfusion/ej2-vue-documenteditor';
// Use the following service URL only for demo purposes
const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
provide('DocumentEditorContainer', [Toolbar]);
</script><template>
<ejs-documenteditorcontainer
height="590px"
:serviceUrl="serviceUrl"
:enableToolbar="true">
</ejs-documenteditorcontainer>
</template>
<script>
import { DocumentEditorContainerComponent, Toolbar } from '@syncfusion/ej2-vue-documenteditor';
export default {
name: 'App',
components: {
'ejs-documenteditorcontainer' : DocumentEditorContainerComponent
},
data () {
return {
// Use the following service URL only for demo purposes
serviceUrl:'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/'
};
},
provide: {
DocumentEditorContainer: [Toolbar]
}
}
</script>The hosted Web API URL is for demo and evaluation purposes only. For production, host your own web service using the GitHub Web Service example or the Docker image.
Run the application
Run the application using the following command:
npm run dev
After the application starts, open the localhost URL shown in the terminal. The Vue DOCX Editor is rendered in the browser with a toolbar and an editable document area, as shown below.

Server-side dependencies
The DOCX Editor component requires server-side interactions for the following operations:
- Open file formats other than SFDT
- Paste with formatting
- Restrict editing
- Spell check
- Save as file formats other than SFDT and DOCX
If you do not require the above functionalities, you can deploy the component as a pure client-side solution without any server-side interactions.
For detailed information about server-side dependencies, refer to the Web Services Overview page.
Looking for the full Vue DOCX Editor component overview, features, pricing, and documentation? Visit the Vue DOCX Editor page.