Vue Js:如何基于下拉选择动态加载tinymce

时间:2017-12-02 13:15:42

标签: vue.js tinymce

我正在尝试基于下拉选择动态加载tinymce,但我认为让这个工作。

这是我的fiddle

Vue.directive('tinymce', {
bind(el) {
tinymce.init({
  target: el,
  theme: 'modern'
 })
}
})

new Vue({
   el: '#timeline_selections',
   data: {
    timeline_type: ''
  }
})

1 个答案:

答案 0 :(得分:1)

找到我自己的解决方案

Vue.directive('tinymce', {
 inserted: function (el) {
   tinymce.remove();
   tinymce.init({
   target: el,
   theme: 'modern'
  })
 }
})