update styling

This commit is contained in:
Philipp Kühn
2020-03-27 13:46:10 +01:00
parent e4e896fe34
commit 8b02b6c2c4
7 changed files with 113 additions and 23 deletions

View File

@@ -1,17 +1,49 @@
<template>
<div>
Time: {{ time }}
</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 {
time: new Date()
editor: null,
}
},
}
</script>
<style src="./style.css" scoped />
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>