[Vuejs]-TinyMCE loaded into vue js app for only one time

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: ''
    }
  }
},

Leave a comment