add FullEditor component

This commit is contained in:
Philipp Kühn
2020-11-12 00:01:18 +01:00
parent ec9c561d84
commit dbefbb98fa
5 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
<template>
<div>
<full-editor v-model="content" />
<div>
{{ content }}
</div>
</div>
</template>
<script>
import { FullEditor } from '@tiptap/vue'
export default {
components: {
FullEditor,
},
data() {
return {
content: '<p>full editor</p>',
}
},
}
</script>

View File

@@ -0,0 +1,3 @@
# Full Editor
<demo name="Examples/FullEditor" />