mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-14 02:09:01 +08:00
82 lines
1.8 KiB
Vue
82 lines
1.8 KiB
Vue
<template>
|
|
<div>
|
|
<editor :editable="true" class="editor" @update="onUpdate">
|
|
|
|
<div class="menubar" slot="menubar" slot-scope="{ nodes, marks }">
|
|
<div v-if="nodes && marks">
|
|
|
|
<button
|
|
class="menubar__button"
|
|
:class="{ 'is-active': nodes.heading.active({ level: 1 }) }"
|
|
@click="nodes.heading.command({ level: 1 })"
|
|
>
|
|
H1
|
|
</button>
|
|
|
|
<button
|
|
class="menubar__button"
|
|
:class="{ 'is-active': nodes.heading.active({ level: 2 }) }"
|
|
@click="nodes.heading.command({ level: 2 })"
|
|
>
|
|
H2
|
|
</button>
|
|
|
|
<button
|
|
class="menubar__button"
|
|
:class="{ 'is-active': nodes.heading.active({ level: 3 }) }"
|
|
@click="nodes.heading.command({ level: 3 })"
|
|
>
|
|
H3
|
|
</button>
|
|
|
|
<button
|
|
class="menubar__button"
|
|
:class="{ 'is-active': nodes.todo_list.active() }"
|
|
@click="nodes.todo_list.command"
|
|
>
|
|
<icon name="checklist" />
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="editor__content" slot="content" slot-scope="props">
|
|
<h1>
|
|
Todo List
|
|
</h1>
|
|
<ul data-type="todo_list">
|
|
<li data-type="todo_item" data-done="true">
|
|
Buy beer
|
|
</li>
|
|
<li data-type="todo_item" data-done="true">
|
|
Buy meat
|
|
</li>
|
|
<li data-type="todo_item" data-done="false">
|
|
Buy milk
|
|
</li>
|
|
<li data-type="todo_item" data-done="false">
|
|
Call mom
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</editor>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
import { Editor } from 'tiptap'
|
|
|
|
export default {
|
|
components: {
|
|
Editor,
|
|
Icon,
|
|
},
|
|
methods: {
|
|
onUpdate(state) {
|
|
// console.log(state.doc.toJSON())
|
|
},
|
|
},
|
|
}
|
|
</script> |