add morrre content

This commit is contained in:
Hans Pagel
2020-09-16 17:01:47 +02:00
parent 80682bbffb
commit c307171295
7 changed files with 160 additions and 14 deletions

View File

@@ -8,7 +8,6 @@ import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph'
import Text from '@tiptap/extension-text'
export default {
components: {
EditorContent,
@@ -22,7 +21,14 @@ export default {
mounted() {
this.editor = new Editor({
content: '<p>This is a radically reduced version of tiptap for minimalisits. It has only support for a document, paragraphs and text. Thats it.</p>',
content: `
<p>
This is a radically reduced version of tiptap. It has only support for a document, paragraphs and text. Thats it. Its probably too much for real minimalists though.
</p>
<p>
The paragraph extension is not literally required, but you need at least one node. That node can be something different, for example to render a task list and only that task list.
</p>
`,
extensions: [
Document(),
Paragraph(),