[Vuejs]-Use tinyMCE with VUEJS 2 without apikey

0👍

The TinyMCE Vue wrapper will rely on our Cloud platform to pull TinyMCE if TinyMCE is not already loaded into the page/application.

The simplest approach is the self host TinyMCE and place a script tag in the head of the main HTML page to load TinyMCE. This will make the tinymce global object available at all times in all components. Alternatively you can import TinyMCE in the component(s) that need it. As long at the tinymce global is there before you try to create an editor component there will be no attempt to use the Cloud delivered version of TinyMCE.

Step 6 of the quick start guide covers this specific capability:

https://www.tiny.cloud/docs/integrations/vue/#tinymcevuejsintegrationquickstartguide

Leave a comment