mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 11:09:01 +08:00
52 lines
1.1 KiB
Vue
52 lines
1.1 KiB
Vue
<template>
|
||
<div class="editor">
|
||
<editor-content class="editor__content" :editor="editor" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { Editor, EditorContent } from 'tiptap'
|
||
import { Placeholder } from 'tiptap-extensions'
|
||
import Doc from './Doc'
|
||
import Title from './Title'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
data() {
|
||
return {
|
||
editor: new Editor({
|
||
extensions: [
|
||
new Doc(),
|
||
new Title(),
|
||
new Placeholder({
|
||
emptyNodeClass: 'is-empty',
|
||
emptyNodeText: 'Write something …',
|
||
}),
|
||
],
|
||
content: `
|
||
<h1>This is a fixed title.</h1>
|
||
<p>With ProseMirror you can force a document layout. Try to remove this title it – it's not possible.</p>
|
||
`,
|
||
}),
|
||
}
|
||
},
|
||
beforeDestroy() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
.editor h1.is-empty::before,
|
||
.editor p.is-empty::before {
|
||
content: attr(data-empty-text);
|
||
float: left;
|
||
color: #aaa;
|
||
pointer-events: none;
|
||
height: 0;
|
||
font-style: italic;
|
||
}
|
||
</style>
|