mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-05 04:19:07 +08:00
94 lines
1.8 KiB
Vue
94 lines
1.8 KiB
Vue
<template>
|
|
<div>
|
|
<editor class="editor" :extensions="extensions">
|
|
|
|
<div class="menububble" slot="menububble" slot-scope="{ marks, focus }">
|
|
<template v-if="marks">
|
|
|
|
<button
|
|
class="menububble__button"
|
|
:class="{ 'is-active': marks.bold.active() }"
|
|
@click="marks.bold.command"
|
|
>
|
|
<icon name="bold" />
|
|
</button>
|
|
|
|
<button
|
|
class="menububble__button"
|
|
:class="{ 'is-active': marks.italic.active() }"
|
|
@click="marks.italic.command"
|
|
>
|
|
<icon name="italic" />
|
|
</button>
|
|
|
|
<button
|
|
class="menububble__button"
|
|
:class="{ 'is-active': marks.code.active() }"
|
|
@click="marks.code.command"
|
|
>
|
|
<icon name="code" />
|
|
</button>
|
|
|
|
</template>
|
|
</div>
|
|
|
|
<div class="editor__content" slot="content" slot-scope="props">
|
|
<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>
|
|
</div>
|
|
|
|
</editor>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
import { Editor } from 'tiptap'
|
|
import {
|
|
BlockquoteNode,
|
|
BulletListNode,
|
|
CodeBlockNode,
|
|
HardBreakNode,
|
|
HeadingNode,
|
|
ListItemNode,
|
|
OrderedListNode,
|
|
TodoItemNode,
|
|
TodoListNode,
|
|
BoldMark,
|
|
CodeMark,
|
|
ItalicMark,
|
|
LinkMark,
|
|
HistoryExtension,
|
|
} from 'tiptap-extensions'
|
|
|
|
export default {
|
|
components: {
|
|
Editor,
|
|
Icon,
|
|
},
|
|
data() {
|
|
return {
|
|
extensions: [
|
|
new BlockquoteNode(),
|
|
new BulletListNode(),
|
|
new CodeBlockNode(),
|
|
new HardBreakNode(),
|
|
new HeadingNode({ maxLevel: 3 }),
|
|
new ListItemNode(),
|
|
new OrderedListNode(),
|
|
new TodoItemNode(),
|
|
new TodoListNode(),
|
|
new BoldMark(),
|
|
new CodeMark(),
|
|
new ItalicMark(),
|
|
new LinkMark(),
|
|
new HistoryExtension(),
|
|
],
|
|
}
|
|
},
|
|
}
|
|
</script> |