App.vue
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<template> <div id="app"> <img alt="Vue logo" src="./assets/logo.png" /> <editor api-key="" :init="editorConfig" initial-value="Welcome to TinyMCE Vue" /> </div> </template> <script> import Editor from '@tinymce/tinymce-vue'; export default { name: 'App', components: { Editor, }, data() { return { editorConfig: { height: 500, menubar: false, plugins: [ 'a11ychecker', 'advlist', 'advcode', 'advtable', 'autolink', 'checklist', 'export', 'lists', 'link', 'image', 'charmap', 'preview', 'anchor', 'searchreplace', 'visualblocks', 'powerpaste', 'fullscreen', 'formatpainter', 'insertdatetime', 'media', 'table', 'help', 'wordcount', ], toolbar: 'undo redo | image | preview | casechange blocks | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist checklist outdent indent | removeformat | a11ycheck code table help', }, }; }, }; </script> <style> /* Add styles if needed */ </style> |