tinymce-vue icon indicating copy to clipboard operation
tinymce-vue copied to clipboard

how to import a custom plugin for vue3

Open RobertHan215 opened this issue 3 years ago • 1 comments

i'm using vue3 in the project, and i create a very simple custom plugin by Yeoman , but i could't find a way to import my custom plugin in the vue3 project. Where to find the start guide for this part.

RobertHan215 avatar Sep 09 '22 13:09 RobertHan215

Ref: INT-3008

exalate-issue-sync[bot] avatar Sep 09 '22 13:09 exalate-issue-sync[bot]

@RobertHan215 There are many ways to include your custom plugin in a Vue project. You can:

  • Host/serve your custom plugin code and include it as an external plugin for example
  • Copy your custom plugin into the plugins folders of your self-hosted TinyMCE deployment
  • You can bundle TinyMCE with your custom plugin (not recommended but you can read more in how to bundle TinyMCE )

Additionally, you can always import your custom logic and load it in the component's configuration setup

jscasca avatar Oct 14 '22 05:10 jscasca