我正在尝试在下拉选择的基础上动态加载tinymce,但我计数使此工作。
这是我的fiddle
Vue.directive('tinymce', {
bind(el) {
tinymce.init({
target: el,
theme: 'modern'
})
}
})
new Vue({
el: '#timeline_selections',
data: {
timeline_type: ''
}
})发布于 2017-12-02 14:28:02
找到了我自己的解决方案
Vue.directive('tinymce', {
inserted: function (el) {
tinymce.remove();
tinymce.init({
target: el,
theme: 'modern'
})
}
})https://stackoverflow.com/questions/47608293
复制相似问题