
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@onlyoffice/document-editor-vue
Advanced tools
This repo contains the ONLYOFFICE Docs Vue.js component which integrates ONLYOFFICE Document Server into Vue.js projects.
Please note: Before working with this component, you need to install ONLYOFFICE Docs. To do so, you can use Docker (recommended).
This procedure requires Node.js (and npm).
This procedure creates a basic Vue.js application and installs an ONLYOFFICE Docs editor in it.
npm create vue@3
cd onlyoffice-vue-demo
npm install --save @onlyoffice/document-editor-vue
<template>
<DocumentEditor
id="docEditor"
documentServerUrl="http://documentserver/"
:config="config"
:onLoadComponentError="onLoadComponentError"
/>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { DocumentEditor } from "@onlyoffice/document-editor-vue";
export default defineComponent({
name: 'ExampleComponent',
components: {
DocumentEditor
},
data() {
const onDocumentReady = () => {
console.log("Document is loaded");
};
return {
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.ashx"
},
events: {
onDocumentReady: onDocumentReady
}
}
}
},
methods: {
onLoadComponentError (errorCode, errorDescription) {
switch(errorCode) {
case -1: // Unknown error loading component
console.log(errorDescription);
break;
case -2: // Error load DocsAPI from http://documentserver/
console.log(errorDescription);
break;
case -3: // DocsAPI is not defined
console.log(errorDescription);
break;
}
}
},
});
</script>
Replace the following lines with your own data:
npm run dev
The easiest way to deploy the application to a production environment is to install serve and create a static server:
npm install -g serve
serve -s build
Another port can be adjusted using the -l or --listen flags:
serve -s build -l 4000
cd onlyoffice-react-demo
serve
Now you can deploy the application to the created server:
npm run build
The dist directory will be created with a production build of your app.
The application will be deployed on the web server (http://localhost:3000 by default).
| Name | Type | Default | Required | Description |
|---|---|---|---|---|
id | string | null | yes | Component unique identifier. |
documentServerUrl | string | null | yes | Address ONLYOFFICE Document Server. |
shardkey | string | boolean | true | no | The string or boolean parameter required to request load balancing during collaborative editing: all users editing the same document are served by the same server. Shard key |
config | object | null | yes | Generic configuration object for opening a file with token. Config API |
onLoadComponentError | (errorCode: number, errorDescription: string) => void | null | no | The function called when an error occurs while loading a component |
Change the address of the Document Server in the config/default.json file:
"documentServerUrl": "http://documentserver/"
npm run build-storybook
npm run storybook
git clone https://github.com/ONLYOFFICE/document-editor-vue
npm install
npm run test
npm run build
npm pack
In case you have any issues, questions, or suggestions for the ONLYOFFICE Document Server Vue component, please refer to the Issues section.
Official project website: www.onlyoffice.com.
Support forum: forum.onlyoffice.com.
FAQs
Vue component for ONLYOFFICE Document Server
The npm package @onlyoffice/document-editor-vue receives a total of 2,058 weekly downloads. As such, @onlyoffice/document-editor-vue popularity was classified as popular.
We found that @onlyoffice/document-editor-vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.