I have integrated tinymce into my Vue.js application, but I am experiencing issues with uploading images.
I have included the following package in my project:
import Editor from '@tinymce/tinymce-vue'
.
I believe I might be missing a necessary plugin or toolbar.
component
<editor
apiKey="API_KEY"
:init="{
height: 200,
menubar: true,
plugins: [
'advlist autolink lists link image charmap print preview anchor',
'searchreplace visualblocks code fullscreen',
'insertdatetime media table paste code help wordcount '
],
file_picker_types: 'image',
toolbar:
'undo redo | formatselect | bold italic backcolor| link image| \
alignleft aligncenter alignright alignjustify | \
bullist numlist outdent indent | removeformat | help | image code'
}"
/>