tiptap/examples/Components/Routes/Title/index.vue
Philipp Kühn ce287ff22f wording
2019-06-21 22:25:48 +02:00

52 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>