mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-01 23:27:51 +08:00
53 lines
1.1 KiB
Vue
53 lines
1.1 KiB
Vue
|
<template>
|
||
|
<div v-if="editor">
|
||
|
<button @click="editor.chain().focus().orderedList().run()" :class="{ 'is-active': editor.isActive('ordered_list') }">
|
||
|
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 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(),
|
||
|
OrderedList(),
|
||
|
ListItem(),
|
||
|
],
|
||
|
content: `
|
||
|
<ul>
|
||
|
<li>A list item</li>
|
||
|
<li>And another one</li>
|
||
|
</ul>
|
||
|
`,
|
||
|
})
|
||
|
},
|
||
|
|
||
|
beforeDestroy() {
|
||
|
this.editor.destroy()
|
||
|
}
|
||
|
}
|
||
|
</script>
|