add vue-2 and vue-3

This commit is contained in:
Philipp Kühn
2021-02-27 23:56:08 +01:00
parent cdf9cc99e0
commit 015c47707a
14 changed files with 1289 additions and 155 deletions

View File

@@ -0,0 +1,36 @@
import Vue from 'vue'
export default Vue.extend({
name: 'EditorContent',
props: {
editor: {
default: null,
type: Object,
},
},
watch: {
editor: {
immediate: true,
handler(editor) {
if (editor && editor.options.element) {
this.$nextTick(() => {
this.$el.appendChild(editor.options.element.firstChild)
editor.createNodeViews()
})
}
},
},
},
render(createElement) {
return createElement('div')
},
beforeDestroy() {
this.editor.setOptions({
element: this.$el,
})
},
})