remove collab from drawing
This commit is contained in:
@@ -5,12 +5,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Collaboration from '@tiptap/extension-collaboration'
|
|
||||||
import { Editor, EditorContent } from '@tiptap/vue-starter-kit'
|
import { Editor, EditorContent } from '@tiptap/vue-starter-kit'
|
||||||
import Document from '@tiptap/extension-document'
|
import Document from '@tiptap/extension-document'
|
||||||
import Text from '@tiptap/extension-text'
|
import Text from '@tiptap/extension-text'
|
||||||
import * as Y from 'yjs'
|
|
||||||
import { WebsocketProvider } from 'y-websocket'
|
|
||||||
import Paper from './Paper.js'
|
import Paper from './Paper.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -26,17 +23,11 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
const ydoc = new Y.Doc()
|
|
||||||
this.provider = new WebsocketProvider('wss://websocket.tiptap.dev', 'tiptap-draw-example', ydoc)
|
|
||||||
|
|
||||||
this.editor = new Editor({
|
this.editor = new Editor({
|
||||||
extensions: [
|
extensions: [
|
||||||
Document.extend({
|
Document.extend({
|
||||||
content: 'paper',
|
content: 'paper',
|
||||||
}),
|
}),
|
||||||
Collaboration.configure({
|
|
||||||
document: ydoc,
|
|
||||||
}),
|
|
||||||
Text,
|
Text,
|
||||||
Paper,
|
Paper,
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user