Does GroupDocs.Editor have a Vue component to embed document editing functionality, or does it provide JavaScript libraries to do document editing in the vue interface

Does GroupDocs.Editor have a Vue component to embed document editing functionality, or does it provide JavaScript libraries to do document editing in the vue interface

@cy310

GroupDocs.Editor is a back-end, UI agnostic API. You could implemnet it in any .NET or Java application. As far as UI is concerned, you could implemnet any JavaScript framework (e.g. Angular, Vue, React).
Below are the steps how API works:

  1. Load the document into GroupDocs.Editor
    1.1 Optional: Specify load options if needed
  2. Open the document for editing
    2.2 Optional: Specify edit options if needed
  3. Generate HTML markup with resources
    3.3 Use different options and settings as required
  4. Pass the generated HTML markup to a 3rd-party WYSIWYG HTML editor
  5. End-user edits the document content using the WYSIWYG editor
  6. After editing, submit the edited document
  7. Transfer the modified markup back to GroupDocs.Editor
  8. Convert the modified markup to the output document of the desired format

Now in above steps, it’s up to you with UI framework you use and utilize WYSIWYG HTML editor.