Using the TinyMCE .zip package with the Vue.js framework
The Official TinyMCE Vue.js component integrates TinyMCE into Vue.js projects. This procedure creates a basic Vue.js application containing a TinyMCE editor.
Version 4 and later of the tinymce-vue
package supports Vue.js 3.x, but does not support Vue.js 2.x. For Vue.js 2.x applications, use tinymce-vue
version 3.
TinyMCE Vue.js integration live examples
For examples of the TinyMCE Vue.js 3.x integration:
-
Clone the
tinymce/tinymce-vue
GitHub repository. For example:git clone https://github.com/tinymce/tinymce-vue.git
-
Install the required packages using
yarn
. For example:yarn install
-
To start the demo server, run:
yarn demo
The tinymce-vue
demo is now running. Visit: http://localhost:3001.
Prerequisites
This procedure requires Node.js (and npm).
Procedure
-
Create a new Vue project named
tinymce-vue-demo
using the Create Vue Tool.-
From a command line or command prompt create a Vue.js 3.x project:
tinymce-vue-demo
.npm create vue@3
-
If you need to create a Vue.js 2.x projects instead:
npm create vue@2
-
As per the Vue FAQ, Vue 2 will reach End of Life by the end of 2023. |
-
Follow the prompts and type
tinymce-vue-demo
as the project name.-
Change into the newly created directory.
cd tinymce-vue-demo
-
Install the
tinymce-vue
package and save it to yourpackage.json
with--save
.
-
-
For Vue.js 3.x users:
npm install --save "@tinymce/tinymce-vue@^5"
-
For Vue.js 2.x users:
npm install --save "@tinymce/tinymce-vue@^3"
-
Using a text editor, open
/path/to/tinymce-vue-demo/src/App.vue
.-
Add a TinyMCE configuration to the
<template>
using the<Editor>
tag. -
Add
import Editor from '@tinymce/tinymce-vue'
to the start of the<script>
.For example:
<script setup> import Editor from '@tinymce/tinymce-vue' </script> <template> <main id="sample"> <img alt="Vue logo" class="logo" src="./assets/logo.svg" width="125" height="125" /> <Editor api-key="no-api-key" :init="{ plugins: 'lists link image table code help wordcount' }" /> </main> </template> <style scoped> .logo { display: block; margin: 0 auto 2rem; } @media (min-width: 1024px) { #sample { display: flex; flex-direction: column; place-items: center; width: 1000px; } } </style>
-
-
TinyMCE can be self-hosted by either: Deploying TinyMCE independent of the Vue.js application, or Bundling TinyMCE with the Vue.js application.
-
-
Deploying TinyMCE independent of the Vue.js application. To use a TinyMCE instance that has been deployed independent of the Vue.js application, use an HTML
<script>
tag.To use an independent deployment of TinyMCE, add a script to either the
<head>
or the end of the<body>
of the HTML file, such as:<script src="/path/to/tinymce.min.js"></script>
To use an independent deployment of TinyMCE with the example create a Vue.js application, add the script to
/path/to/tinymce-vue-demo/public/index.html
. -
Bundle TinyMCE with the Vue.js application using a module loader (such as Webpack).
Tiny does not recommend bundling tinymce
andtinymce-vue
with a module loader. Bundling these packages can be complex and error prone.To bundle TinyMCE using a module loader (such as Webpack, Rollup, or Browserify), import or require the
tinymce
package, followed by thetinymce-vue
package, then the other required TinyMCE-related imports.Example of bundling:
/* Add the tinymce-vue wrapper to the bundle */ import { Editor } from '@tinymce/tinymce-vue'; /* For instructions on bundling TinyMCE, see the Bundling TinyMCE documentation. */
For instructions on bundling TinyMCE, see: Bundling TinyMCE.
-
Test the application using the Node.js development server.
-
-
To start the development server, navigate to the
tinymce-vue-demo
directory and run:npm run dev
-
To stop the development server, select on the command line or command prompt and press Ctrl+C.
Deploying the application to a HTTP server
The application will require further configuration before it can be deployed to a production environment. For information on configuring the application for deployment, see: Vue.js - Production Deployment.
Next Steps
-
For examples of the TinyMCE integration, see: the tinymce-vue storybook.
-
For information on customizing:
-
TinyMCE integration, see: Vue.js framework Technical Reference.
-
TinyMCE, see: Basic setup.
-
The Vue.js application, see: Vue.js Documentation.
-