2018-08-22 20:10:44 +08:00
|
|
|
<template>
|
2018-10-22 23:40:55 +08:00
|
|
|
<div class="editor">
|
2018-10-23 00:24:54 +08:00
|
|
|
<menu-bubble class="menububble" :editor="editor">
|
2018-10-29 05:57:05 +08:00
|
|
|
<template slot-scope="{ nodes, marks, commands }">
|
2018-08-22 21:58:32 +08:00
|
|
|
|
2018-10-22 23:40:55 +08:00
|
|
|
<button
|
|
|
|
class="menububble__button"
|
|
|
|
:class="{ 'is-active': marks.bold.active() }"
|
2018-10-29 05:57:05 +08:00
|
|
|
@click="commands.bold"
|
2018-10-22 23:40:55 +08:00
|
|
|
>
|
|
|
|
<icon name="bold" />
|
|
|
|
</button>
|
2018-08-22 21:58:32 +08:00
|
|
|
|
2018-10-22 23:40:55 +08:00
|
|
|
<button
|
|
|
|
class="menububble__button"
|
|
|
|
:class="{ 'is-active': marks.italic.active() }"
|
2018-10-29 05:57:05 +08:00
|
|
|
@click="commands.italic"
|
2018-10-22 23:40:55 +08:00
|
|
|
>
|
|
|
|
<icon name="italic" />
|
|
|
|
</button>
|
2018-08-22 21:58:32 +08:00
|
|
|
|
2018-10-22 23:40:55 +08:00
|
|
|
<button
|
|
|
|
class="menububble__button"
|
|
|
|
:class="{ 'is-active': marks.code.active() }"
|
2018-10-29 05:57:05 +08:00
|
|
|
@click="commands.code"
|
2018-10-22 23:40:55 +08:00
|
|
|
>
|
|
|
|
<icon name="code" />
|
|
|
|
</button>
|
2018-08-22 21:58:32 +08:00
|
|
|
|
2018-10-22 23:40:55 +08:00
|
|
|
</template>
|
|
|
|
</menu-bubble>
|
2018-08-22 21:58:32 +08:00
|
|
|
|
2018-10-22 23:40:55 +08:00
|
|
|
<editor-content class="editor__content" :editor="editor" />
|
2018-08-22 20:10:44 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Icon from 'Components/Icon'
|
2018-10-22 23:40:55 +08:00
|
|
|
import { Editor, EditorContent, MenuBubble } from 'tiptap'
|
2018-08-24 04:08:19 +08:00
|
|
|
import {
|
2018-10-24 13:46:47 +08:00
|
|
|
Blockquote,
|
|
|
|
BulletList,
|
|
|
|
CodeBlock,
|
|
|
|
HardBreak,
|
|
|
|
Heading,
|
|
|
|
ListItem,
|
|
|
|
OrderedList,
|
|
|
|
TodoItem,
|
|
|
|
TodoList,
|
|
|
|
Bold,
|
|
|
|
Code,
|
|
|
|
Italic,
|
|
|
|
Link,
|
|
|
|
Strike,
|
|
|
|
Underline,
|
|
|
|
History,
|
2018-08-24 04:08:19 +08:00
|
|
|
} from 'tiptap-extensions'
|
2018-08-22 20:10:44 +08:00
|
|
|
|
|
|
|
export default {
|
2018-08-23 01:28:57 +08:00
|
|
|
components: {
|
2018-10-22 23:40:55 +08:00
|
|
|
EditorContent,
|
|
|
|
MenuBubble,
|
2018-08-23 01:28:57 +08:00
|
|
|
Icon,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2018-10-22 23:40:55 +08:00
|
|
|
editor: new Editor({
|
|
|
|
extensions: [
|
2018-10-24 13:46:47 +08:00
|
|
|
new Blockquote(),
|
|
|
|
new BulletList(),
|
|
|
|
new CodeBlock(),
|
|
|
|
new HardBreak(),
|
2018-10-24 13:58:08 +08:00
|
|
|
new Heading({ levels: [1, 2, 3] }),
|
2018-10-24 13:46:47 +08:00
|
|
|
new ListItem(),
|
|
|
|
new OrderedList(),
|
|
|
|
new TodoItem(),
|
|
|
|
new TodoList(),
|
|
|
|
new Bold(),
|
|
|
|
new Code(),
|
|
|
|
new Italic(),
|
|
|
|
new Link(),
|
|
|
|
new Strike(),
|
|
|
|
new Underline(),
|
|
|
|
new History(),
|
2018-10-22 23:40:55 +08:00
|
|
|
],
|
|
|
|
content: `
|
|
|
|
<h2>
|
|
|
|
Menu Bubble
|
|
|
|
</h2>
|
|
|
|
<p>
|
|
|
|
Hey, try to select some text here. There will popup a menu for selecting some inline styles. <em>Remember:</em> you have full control about content and styling of this menu.
|
|
|
|
</p>
|
|
|
|
`,
|
|
|
|
}),
|
2018-08-23 01:28:57 +08:00
|
|
|
}
|
|
|
|
},
|
2018-10-23 03:40:12 +08:00
|
|
|
beforeDestroy() {
|
|
|
|
this.editor.destroy()
|
|
|
|
},
|
2018-08-22 20:10:44 +08:00
|
|
|
}
|
|
|
|
</script>
|