add GuideGettingStarted demos

This commit is contained in:
Philipp Kühn
2021-08-25 18:27:05 +02:00
parent f99357b9a3
commit b1a87e4ad6
4 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<template>
<editor-content :editor="editor" />
</template>
<script>
import { Editor, EditorContent } from '@tiptap/vue-3'
import StarterKit from '@tiptap/starter-kit'
export default {
components: {
EditorContent,
},
props: {
modelValue: {
type: String,
default: '',
},
},
data() {
return {
editor: null,
}
},
watch: {
modelValue(value) {
// HTML
const isSame = this.editor.getHTML() === value
// JSON
// const isSame = this.editor.getJSON().toString() === value.toString()
if (isSame) {
return
}
this.editor.commands.setContent(this.value, false)
},
},
mounted() {
this.editor = new Editor({
extensions: [
StarterKit,
],
content: this.modelValue,
onUpdate: () => {
// HTML
this.$emit('update:modelValue', this.editor.getHTML())
// JSON
// this.$emit('update:modelValue', this.editor.getJSON())
},
})
},
beforeDestroy() {
this.editor.destroy()
},
}
</script>