From c63755f4ca1d51cdd38141bb5362e7bdd9a4b85f Mon Sep 17 00:00:00 2001
From: crayymumu <854994301@qq.com>
Date: Wed, 1 Jul 2020 13:50:18 +0800
Subject: [PATCH] perf[Tinymce]: remove useless code (#3295)
---
src/components/Tinymce/index.vue | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/src/components/Tinymce/index.vue b/src/components/Tinymce/index.vue
index bde7af50..8993d278 100644
--- a/src/components/Tinymce/index.vue
+++ b/src/components/Tinymce/index.vue
@@ -211,10 +211,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(`
`))
}
}
}