Try this
import tinymce from 'tinymce/tinymce'
import 'tinymce/themes/modern/theme'
Vue.directive('tinymce', {
bind(el) {
tinymce.init({
target: el, // The element the directive is bound to. See here https://vuejs.org/v2/guide/custom-directive.html#Directive-Hook-Arguments
theme: 'modern',
skin_url: '/css/tinymce/skins/lightgray' // point your tinymce skin directory here
})
}
})