@tiptap/vue-3
Version:
Vue components for tiptap
32 lines (27 loc) • 616 B
text/typescript
import { defineComponent, h } from 'vue'
export const NodeViewWrapper = defineComponent({
name: 'NodeViewWrapper',
props: {
as: {
type: String,
default: 'div',
},
},
inject: ['onDragStart', 'decorationClasses'],
render() {
return h(
this.as,
{
// @ts-ignore
class: this.decorationClasses,
style: {
whiteSpace: 'normal',
},
'data-node-view-wrapper': '',
// @ts-ignore (https://github.com/vuejs/vue-next/issues/3031)
onDragstart: this.onDragStart,
},
this.$slots.default?.(),
)
},
})