Files
tiptap/src/demos/Time/index.vue
Philipp Kühn 8b02b6c2c4 update styling
2020-03-27 13:46:10 +01:00

49 lines
1.0 KiB
Vue

<template>
<div>
<div v-if="editor">
<button @click="editor.undo().focus()">
undo
</button>
<button @click="editor.redo().focus()">
redo
</button>
</div>
<editor-content :editor="editor" />
</div>
</template>
<script>
import { Editor, EditorContent } from '@tiptap/core'
import Document from '@tiptap/document-extension'
import Paragraph from '@tiptap/paragraph-extension'
import Text from '@tiptap/text-extension'
import History from '@tiptap/history-extension'
export default {
components: {
EditorContent,
},
data() {
return {
editor: null,
}
},
mounted() {
this.editor = new Editor({
content: '<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>',
extensions: [
new Document(),
new Paragraph(),
new Text(),
new History(),
],
})
},
beforeDestroy() {
this.editor.destroy()
},
}
</script>