74 lines
1.8 KiB
Vue
74 lines
1.8 KiB
Vue
<template>
|
||
<div v-if="editor">
|
||
<button @click="editor.chain().focus().toggleBulletList().run()" :class="{ 'is-active': editor.isActive('bulletList') }">
|
||
bullet list
|
||
</button>
|
||
<button @click="editor.chain().focus().toggleOrderedList().run()" :class="{ 'is-active': editor.isActive('orderedList') }">
|
||
ordered list
|
||
</button>
|
||
|
||
<editor-content :editor="editor" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { Editor } from '@tiptap/core'
|
||
import { EditorContent } from '@tiptap/vue'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Text from '@tiptap/extension-text'
|
||
import BulletList from '@tiptap/extension-bullet-list'
|
||
import OrderedList from '@tiptap/extension-ordered-list'
|
||
import ListItem from '@tiptap/extension-list-item'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
BulletList,
|
||
OrderedList,
|
||
ListItem,
|
||
],
|
||
content: `
|
||
<p>
|
||
I like lists. Let’s add one:
|
||
</p>
|
||
<ul>
|
||
<li>This is a bullet list.</li>
|
||
<li>And it has three list items.</li>
|
||
<li>Here is the third one.</li>
|
||
</ul>
|
||
<p>
|
||
Do you want to see one more? I bet! Here is another one:
|
||
</p>
|
||
<ol>
|
||
<li>That’s a different list, actually it’s an ordered list.</li>
|
||
<li>It also has three list items.</li>
|
||
<li>And all of them are numbered.</li>
|
||
</ol>
|
||
<p>
|
||
Lists would be nothing without list items.
|
||
</p>
|
||
`,
|
||
})
|
||
},
|
||
|
||
beforeDestroy() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|