Vue
The ONLYOFFICE Docs Vue.js component integrates ONLYOFFICE Docs into Vue.js projects. The component supports Vue 3. The list of changes for each version is published on the Releases tab.
Prerequisites
This procedure requires Node.js (and npm) and a running ONLYOFFICE Docs instance. If you do not have one, install it on your own server as described in the self-hosted section, or deploy it in the cloud.
The page assumes a basic working knowledge of Vue.js. The steps below use the Create Vue Tool to create a project from scratch.
Creating the demo Vue.js application with ONLYOFFICE Docs editor
This procedure creates a basic Vue.js application and installs an ONLYOFFICE Docs editor in it.
-
Create a new Vue.js project named
onlyoffice-vue-demoand install its dependencies:npm create vue@latest onlyoffice-vue-democd onlyoffice-vue-demonpm install -
Install the ONLYOFFICE Docs Vue.js component from the npm public registry and save it to the
package.jsonfile:- npm
- yarn
npm install --save @onlyoffice/document-editor-vueyarn add @onlyoffice/document-editor-vue -
Open the
./src/App.vuefile in theonlyoffice-vue-demoproject and replace its contents with the following code:<template><DocumentEditorid="docxEditor"documentServerUrl="http://documentserver/":config="config":events_onDocumentReady="onDocumentReady":onLoadComponentError="onLoadComponentError"/></template><script setup lang="ts">import {DocumentEditor, type IConfig} from "@onlyoffice/document-editor-vue";const config: IConfig = {document: {fileType: "docx",key: "Khirz6zTPdfd7",title: "Example Document Title.docx",url: "https://example.com/url-to-example-document.docx",},documentType: "word",editorConfig: {callbackUrl: "https://example.com/url-to-callback",},token: "TOKEN_HERE",};function onDocumentReady() {console.log("Document is loaded");}function onLoadComponentError(errorCode: number, errorDescription: string) {switch (errorCode) {case -1: // Unknown error loading componentconsole.log(errorDescription);break;case -2: // Error load DocsAPI from http://documentserver/console.log(errorDescription);break;case -3: // DocsAPI is not definedconsole.log(errorDescription);break;}}</script>Replace the following lines with your own data:
http://documentserver/- replace with the URL of your server. You can register a free ONLYOFFICE Cloud and use its public IP address or public DNS that can be found in the Instances section of the cloud console.https://example.com/url-to-example-document.docx- replace with the URL to your file. You can use the URLhttps://static.onlyoffice.com/assets/docs/samples/demo.docxof our sample document for testing.https://example.com/url-to-callback- replace with your callback URL (this is required for the saving functionality to work).TOKEN_HERE- replace with the signature of the configuration. It is required when JWT validation is enabled on your document server, which is the default configuration. See Signing the configuration.
This file creates the
Appcomponent containing the ONLYOFFICE Docs editor configured with basic features.noteThe steps above use the
<script setup>syntax, which the Create Vue Tool generates by default. In a component written with the Options API, return the configuration from thedataoption and declare the handlers in themethodsoption. -
Test the application using the Vite development server:
-
To start the development server, navigate to the
onlyoffice-vue-demodirectory and run:npm run devThe application becomes available at
http://localhost:5173. -
To stop the development server, switch to the command line or command prompt and press
Ctrl+C.
-
Signing the configuration
ONLYOFFICE Docs validates the editor configuration with a JSON Web Token. JWT validation is enabled by default, so the config must include a token — a signature of the configuration itself. The token is not a constant: regenerate it whenever any signed parameter changes.
Signing requires the secret key of your ONLYOFFICE Docs, so generate the token on your server and send the ready configuration to the browser. A Vue.js application cannot keep the secret key private.
Signing the configuration on the server
Build the configuration on your backend, sign it, and return it from an endpoint:
// npm install jsonwebtoken
import jwt from "jsonwebtoken";
app.get("/api/editor-config", (request, response) => {
const config = {
document: {
fileType: "docx",
key: "Khirz6zTPdfd7",
title: "Example Document Title.docx",
url: "https://example.com/url-to-example-document.docx",
},
documentType: "word",
editorConfig: {
callbackUrl: "https://example.com/url-to-callback",
},
};
config.token = jwt.sign(config, process.env.DOCUMENT_SERVER_SECRET, {algorithm: "HS256"});
response.json(config);
});
See the Signature section for the signing code in other languages.
Passing the signed configuration to the component
Request the configuration when the component is mounted and render the editor once it arrives, as the config property is required:
<template>
<DocumentEditor
v-if="config"
id="docxEditor"
documentServerUrl="http://documentserver/"
:config="config"
/>
</template>
<script setup lang="ts">
import {onMounted, ref} from "vue";
import {DocumentEditor, type IConfig} from "@onlyoffice/document-editor-vue";
const config = ref<IConfig | null>(null);
onMounted(async () => {
const response = await fetch("/api/editor-config");
config.value = await response.json();
});
</script>
The component merges config into the configuration it sends to ONLYOFFICE Docs, so the token field reaches the editor unchanged.
Calling editor methods in the Vue.js component
-
The component stores every editor instance in the
window.DocEditor.instancesobject. Get the instance by the componentid:const documentEditor = window.DocEditor.instances["docxEditor"]; -
Call any editor method from this object:
documentEditor.showMessage("Welcome to ONLYOFFICE Editor!");
Example:
function onDocumentReady() {
const documentEditor = window.DocEditor.instances["docxEditor"];
documentEditor.showMessage("Welcome to ONLYOFFICE Editor!");
}
Using Automation API in Vue.js
Automation API interacts with the document content from your own interface through a connector. A connector is bound to the editor instance that created it and remains valid as long as this instance exists.
Automation API is available only for ONLYOFFICE Docs Developer.
Create the connector with the createConnector method in the events_onDocumentReady handler, and reuse it instead of creating a new one for each operation. Store it in a shallowRef so that Vue.js does not make the connector reactive:
<template>
<DocumentEditor
id="docxEditor"
documentServerUrl="http://documentserver/"
:config="config"
:events_onDocumentReady="onDocumentReady"
/>
</template>
<script setup lang="ts">
import {onUnmounted, shallowRef, watch} from "vue";
import {DocumentEditor, type IConfig} from "@onlyoffice/document-editor-vue";
defineProps<{config: IConfig}>();
const connector = shallowRef<any>(null);
function onDocumentReady() {
const documentEditor = window.DocEditor.instances["docxEditor"];
connector.value = documentEditor.createConnector();
}
onUnmounted(() => {
connector.value?.disconnect();
connector.value = null;
});
</script>
Call the disconnect method in the onUnmounted hook of the component that renders DocumentEditor, so that the connector is disconnected while the editor still exists.
Check that the connector is created before sending commands through it instead of retrying the failed calls:
watch(connector, (value) => {
if (!value) return; // the editor is not ready yet
value.executeMethod("GetAllComments", null, (comments: object[]) => {
console.log("Comments:", comments);
});
});
When a property change destroys the editor and loads a new one, as described in the Properties section, the connector of the destroyed editor becomes invalid: disconnect it and create a new one in the events_onDocumentReady handler of the new editor.
Deploying the demo Vue.js application
-
Navigate to the
onlyoffice-vue-demodirectory and create a production build:npm run buildThe
distdirectory will be created with a production build of your app. -
Check the build locally using the Vite preview server:
npm run preview -
To serve the build with a standalone static server, install the serve package globally:
npm install -g serve -
Serve the
distdirectory on the 3000 port:serve -s distAnother port can be adjusted using the
-lor--listenflags:serve -s dist -l 4000
To deploy the application to your own web server, copy the contents of the onlyoffice-vue-demo/dist directory to the root directory of the web server.
ONLYOFFICE Docs Vue.js component API
Properties
The config property is merged over the separate properties of the component. The merge is shallow: a top-level key of config replaces the corresponding component properties entirely instead of merging with them.
- If
config.documentis set, thedocument_fileTypeanddocument_titleproperties are ignored. - If
config.editorConfigis set, theeditorConfig_langproperty is ignored. - If
config.eventsis set, all theevents_on*properties are ignored.
Each events_on* property corresponds to the event with the same name in the editor configuration.
The component destroys the editor and loads a new one when the config, document_fileType, document_title, documentType, editorConfig_lang, height, type, or width property changes, and destroys it when the component is unmounted.
| Name | Type | Default | Description |
|---|---|---|---|
id* | string | - | Component unique identifier. |
documentServerUrl* | string | - | Address of ONLYOFFICE Docs. |
config* | object | - | Generic configuration object for opening a file. |
shardkey | string | boolean | true | The shardkey parameter added to the query string of the ONLYOFFICE Docs API script request for load balancing. If set to true, the document key from config is used as a value. Set to false to send the request without this parameter. |
onLoadComponentError | (errorCode: number, errorDescription: string) => void | null | The function called when an error occurs while loading a component. |
document_fileType | string | null | The type of the file. |
document_title | string | null | The file name. |
documentType | string | null | The document type. |
editorConfig_lang | string | null | The editor interface language. |
height | string | null | The document height in the browser window. |
type | string | null | The platform type used to access the document: desktop, mobile, or embedded. |
width | string | null | The document width in the browser window. |
events_onAppReady | (event: object) => void | null | The function called when the application is loaded into the browser. |
events_onDocumentStateChange | (event: object) => void | null | The function called when the document is modified. |
events_onMetaChange | (event: object) => void | null | The function called when the meta information of the document is changed via the meta command. |
events_onDocumentReady | (event: object) => void | null | The function called when the document is loaded into the document editor. |
events_onInfo | (event: object) => void | null | The function called when the application opened the file. |
events_onWarning | (event: object) => void | null | The function called when a warning occurs. |
events_onError | (event: object) => void | null | The function called when an error or some other specific event occurs. |
events_onRequestSharingSettings | (event: object) => void | null | The function called when the user is trying to manage document access rights by clicking Change access rights button. |
events_onRequestRename | (event: object) => void | null | The function called when the user is trying to rename the file by clicking the Rename... button. |
events_onMakeActionLink | (event: object) => void | null | The function called when the user is trying to get link for opening the document which contains a bookmark, scrolling to the bookmark position. |
events_onRequestInsertImage | (event: object) => void | null | The function called when the user is trying to insert an image by clicking the Image from Storage button. |
events_onRequestSaveAs | (event: object) => void | null | The function called when the user is trying to save file by clicking Save Copy as... button. |
events_onRequestMailMergeRecipients | (event: object) => void | null | Deprecated since version 7.5, use events_onRequestSelectSpreadsheet instead. The function called when the user is trying to select recipients data by clicking the Mail merge button. |
events_onRequestCompareFile | (event: object) => void | null | Deprecated since version 7.5, use events_onRequestSelectDocument instead. The function called when the user is trying to select document for comparing by clicking the Document from Storage button. |
events_onRequestEditRights | (event: object) => void | null | The function called when the user is trying to switch the document from the viewing into the editing mode by clicking the Edit Document button. |
events_onRequestHistory | (event: object) => void | null | The function called when the user is trying to show the document version history by clicking the Version History button. |
events_onRequestHistoryClose | (event: object) => void | null | The function called when the user is trying to go back to the document from viewing the document version history by clicking the Close History button. |
events_onRequestHistoryData | (event: object) => void | null | The function called when the user is trying to click the specific document version in the document version history. |
events_onRequestRestore | (event: object) => void | null | The function called when the user is trying to restore the file version by clicking the Restore button in the version history. |
events_onRequestSelectSpreadsheet | (event: object) => void | null | The function called when the user is trying to select recipients data by clicking the Mail merge button. |
events_onRequestSelectDocument | (event: object) => void | null | The function called when the user is trying to select a document for comparing, combining, or inserting text. |
events_onRequestUsers | (event: object) => void | null | The function called when the user can select other users to mention in the comments, grant the access rights to edit the specific sheet ranges, or set the user avatars. |
* - required field
Feedback and support
In case you have any issues, questions, or suggestions for the ONLYOFFICE Docs Vue.js component, please refer to the Issues section.