58 lines
1016 B
Vue
58 lines
1016 B
Vue
<template>
|
|
<div v-if="editor">
|
|
<button @click="editor.chain().focus().hardBreak().run()">
|
|
hardBreak
|
|
</button>
|
|
|
|
<editor-content :editor="editor" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Editor } from '@tiptap/core'
|
|
import { EditorContent } from '@tiptap/vue'
|
|
import Document from '@tiptap/extension-document'
|
|
import Paragraph from '@tiptap/extension-paragraph'
|
|
import Text from '@tiptap/extension-text'
|
|
import HardBreak from '@tiptap/extension-hard-break'
|
|
|
|
export default {
|
|
components: {
|
|
EditorContent,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
editor: null,
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
this.editor = new Editor({
|
|
extensions: [
|
|
Document,
|
|
Paragraph,
|
|
Text,
|
|
HardBreak,
|
|
],
|
|
content: `
|
|
<p>
|
|
This<br>
|
|
is<br>
|
|
a<br>
|
|
single<br>
|
|
paragraph<br>
|
|
with<br>
|
|
line<br>
|
|
breaks.
|
|
</p>
|
|
`,
|
|
})
|
|
},
|
|
|
|
beforeDestroy() {
|
|
this.editor.destroy()
|
|
},
|
|
}
|
|
</script>
|