tiptap/packages/vue-3/src/NodeViewWrapper.ts
2021-04-03 23:15:13 +02:00

29 lines
588 B
TypeScript

import { h, defineComponent } from 'vue'
export const NodeViewWrapper = defineComponent({
props: {
as: {
type: String,
default: 'div',
},
},
inject: ['onDragStart', 'decorationClasses'],
render() {
return h(
this.as, {
// @ts-ignore
class: this.decorationClasses.value,
style: {
whiteSpace: 'normal',
},
'data-node-view-wrapper': '',
// @ts-ignore (https://github.com/vuejs/vue-next/issues/3031)
onDragStart: this.onDragStart,
},
this.$slots.default?.(),
)
},
})