disable nodeview for now

This commit is contained in:
Philipp Kühn 2020-04-27 09:06:42 +02:00
parent f8d1db1b6d
commit e6c6ec263f

View File

@ -1,6 +1,6 @@
import { Node } from '@tiptap/core'
import { NodeSpec } from 'prosemirror-model'
import ParagraphComponent from './paragraph.vue'
// import ParagraphComponent from './paragraph.vue'
export default class Paragraph extends Node {
@ -12,7 +12,7 @@ export default class Paragraph extends Node {
group: 'block',
parseDOM: [{ tag: 'p' }],
toDOM: () => ['p', 0],
toVue: ParagraphComponent,
// toVue: ParagraphComponent,
}
}