mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-07 17:43:49 +08:00
60 lines
918 B
Vue
60 lines
918 B
Vue
<template>
|
|
<div v-if="editor">
|
|
<editor-content :editor="editor" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Editor, EditorContent } from '@tiptap/vue-3'
|
|
import StarterKit from '@tiptap/starter-kit'
|
|
import Commands from './commands'
|
|
import suggestion from './suggestion'
|
|
|
|
export default {
|
|
components: {
|
|
EditorContent,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
editor: null,
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.editor = new Editor({
|
|
extensions: [
|
|
StarterKit,
|
|
Commands.configure({
|
|
suggestion,
|
|
}),
|
|
],
|
|
content: `
|
|
<p>Type a slash</p>
|
|
<p></p>
|
|
<p></p>
|
|
`,
|
|
})
|
|
},
|
|
|
|
beforeUnmount() {
|
|
this.editor.destroy()
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.ProseMirror {
|
|
> * + * {
|
|
margin-top: 0.75em;
|
|
}
|
|
}
|
|
|
|
.mention {
|
|
border: 1px solid #000;
|
|
border-radius: 0.4rem;
|
|
padding: 0.1rem 0.3rem;
|
|
box-decoration-break: clone;
|
|
}
|
|
</style>
|