fix a bug in ie11

This commit is contained in:
Philipp Kühn
2018-11-16 17:22:05 +01:00
parent d88db5866a
commit f27bd6475a

View File

@@ -13,7 +13,7 @@ export default {
handler(editor) { handler(editor) {
if (editor && editor.element) { if (editor && editor.element) {
this.$nextTick(() => { this.$nextTick(() => {
this.$el.append(editor.element.firstChild) this.$el.appendChild(editor.element.firstChild)
editor.setParentComponent(this) editor.setParentComponent(this)
}) })
} }