mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 11:09:01 +08:00
72 lines
1.5 KiB
Vue
72 lines
1.5 KiB
Vue
|
<template>
|
||
|
<div class="editor">
|
||
|
<editor-menu-bar :editor="editor">
|
||
|
<div class="menubar" slot-scope="{ commands, isActive }">
|
||
|
|
||
|
<button
|
||
|
class="menubar__button"
|
||
|
@click="commands.undo"
|
||
|
>
|
||
|
<icon name="undo" />
|
||
|
</button>
|
||
|
|
||
|
<button
|
||
|
class="menubar__button"
|
||
|
@click="commands.redo"
|
||
|
>
|
||
|
<icon name="redo" />
|
||
|
</button>
|
||
|
|
||
|
</div>
|
||
|
</editor-menu-bar>
|
||
|
|
||
|
<editor-content class="editor__content" :editor="editor" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Icon from 'Components/Icon'
|
||
|
import { Editor, EditorContent, EditorMenuBar } from 'tiptap'
|
||
|
import {
|
||
|
HardBreak,
|
||
|
Heading,
|
||
|
Bold,
|
||
|
Code,
|
||
|
Italic,
|
||
|
History,
|
||
|
} from 'tiptap-extensions'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
EditorContent,
|
||
|
EditorMenuBar,
|
||
|
Icon,
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
editor: new Editor({
|
||
|
extensions: [
|
||
|
new HardBreak(),
|
||
|
new Heading({ levels: [1, 2, 3] }),
|
||
|
new Bold(),
|
||
|
new Code(),
|
||
|
new Italic(),
|
||
|
new History(),
|
||
|
],
|
||
|
content: `
|
||
|
<h2>
|
||
|
History
|
||
|
</h2>
|
||
|
<p>
|
||
|
Try to change some content here. With the <code>History</code> extension you are able to undo and redo your changes. You can also use keyboard shortcuts for this (<code>cmd+z</code> and <code>cmd+shift+z</code>).
|
||
|
</p>
|
||
|
`,
|
||
|
}),
|
||
|
}
|
||
|
},
|
||
|
beforeDestroy() {
|
||
|
this.editor.destroy()
|
||
|
},
|
||
|
}
|
||
|
</script>
|