mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-07 17:43:49 +08:00
71 lines
1.4 KiB
Vue
71 lines
1.4 KiB
Vue
<template>
|
||
<editor-content :editor="editor" />
|
||
</template>
|
||
|
||
<script>
|
||
import { Editor, EditorContent } from '@tiptap/vue-3'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Text from '@tiptap/extension-text'
|
||
import Collaboration from '@tiptap/extension-collaboration'
|
||
import Placeholder from '@tiptap/extension-placeholder'
|
||
import * as Y from 'yjs'
|
||
import { WebrtcProvider } from 'y-webrtc'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
provider: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
const ydoc = new Y.Doc()
|
||
|
||
this.provider = new WebrtcProvider('tiptap-collaboration-extension', ydoc)
|
||
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
Collaboration.configure({
|
||
document: ydoc,
|
||
}),
|
||
Placeholder.configure({
|
||
placeholder: 'Write something … It’ll be shared with everyone else looking at this example.',
|
||
}),
|
||
],
|
||
})
|
||
},
|
||
|
||
beforeUnmount() {
|
||
this.editor.destroy()
|
||
this.provider.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
/* Basic editor styles */
|
||
.ProseMirror {
|
||
> * + * {
|
||
margin-top: 0.75em;
|
||
}
|
||
}
|
||
|
||
/* Placeholder (at the top) */
|
||
.ProseMirror p.is-editor-empty:first-child::before {
|
||
content: attr(data-placeholder);
|
||
float: left;
|
||
color: #adb5bd;
|
||
pointer-events: none;
|
||
height: 0;
|
||
}
|
||
</style>
|