我正在尝试基于下拉选择动态加载tinymce,但我认为让这个工作。
这是我的fiddle
Vue.directive('tinymce', {
bind(el) {
tinymce.init({
target: el,
theme: 'modern'
})
}
})
new Vue({
el: '#timeline_selections',
data: {
timeline_type: ''
}
})
答案 0 :(得分:1)
找到我自己的解决方案
Vue.directive('tinymce', {
inserted: function (el) {
tinymce.remove();
tinymce.init({
target: el,
theme: 'modern'
})
}
})