feature: tinymce add setContent && getContent method

pull/256/head
Pan 7 years ago
parent 658abf664d
commit 9463c50e06

@ -150,6 +150,12 @@ export default {
})
},
methods: {
setContent(value) {
window.tinymce.get(this.tinymceId).setContent(value)
},
getContent() {
window.tinymce.get(this.tinymceId).getContent()
},
imageSuccessCBK(arr) {
const _this = this
arr.forEach(v => {

Loading…
Cancel
Save