diff --git a/src/components/Tinymce/index.vue b/src/components/Tinymce/index.vue
index 0cd4e9cd..cb6b91c7 100644
--- a/src/components/Tinymce/index.vue
+++ b/src/components/Tinymce/index.vue
@@ -204,10 +204,7 @@ export default {
window.tinymce.get(this.tinymceId).getContent()
},
imageSuccessCBK(arr) {
- const _this = this
- arr.forEach(v => {
- window.tinymce.get(_this.tinymceId).insertContent(`
`)
- })
+ arr.forEach(v => window.tinymce.get(this.tinymceId).insertContent(`
`))
}
}
}