tiptap/packages/vue-2/src/VueRenderer.ts

39 lines
748 B
TypeScript
Raw Normal View History

2021-02-28 06:56:08 +08:00
import Vue from 'vue'
import { VueConstructor } from 'vue/types/umd'
2021-03-01 06:24:26 +08:00
export class VueRenderer {
2021-02-28 06:56:08 +08:00
vm!: Vue
constructor(component: Vue | VueConstructor, props: any) {
const Component = Vue.extend(component)
this.vm = new Component(props).$mount()
}
get element() {
return this.vm.$el
}
updateProps(props: { [key: string]: any } = {}) {
if (!this.vm.$props) {
return
}
// prevents `Avoid mutating a prop directly` error message
const originalSilent = Vue.config.silent
Vue.config.silent = true
Object
.entries(props)
.forEach(([key, value]) => {
this.vm.$props[key] = value
})
Vue.config.silent = originalSilent
}
destroy() {
this.vm.$destroy()
}
}