0๐
I would recommend reading the official documentation, and โ also โ place tinymce
in the data()
object:
data() {
return {
tinyMCE: {
init: {
api: 'API_KEY',
plugins: [
'advlist autolink lists link image charmap print preview anchor',
'searchreplace visualblocks code fullscreen',
'insertdatetime media table paste code help wordcount',
'autoresize'
],
toolbar: 'undo redo | formatselect | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat',
},
modelForField: ''
}
}
},
Source:stackexchange.com