tiptap/examples/Components/Routes/TodoList/index.vue

82 lines
1.6 KiB
Vue
Raw Normal View History

2018-08-22 22:20:56 +08:00
<template>
<div>
<editor :editable="true" class="editor" @update="onUpdate">
<div class="menubar" slot="menubar" slot-scope="{ nodes, marks }">
<div v-if="nodes && marks">
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.heading.active({ level: 1 }) }"
@click="nodes.heading.command({ level: 1 })"
>
2018-08-22 22:24:28 +08:00
H1
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.heading.active({ level: 2 }) }"
@click="nodes.heading.command({ level: 2 })"
>
2018-08-22 22:24:28 +08:00
H2
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.heading.active({ level: 3 }) }"
@click="nodes.heading.command({ level: 3 })"
>
2018-08-22 22:24:28 +08:00
H3
</button>
<button
2018-08-23 01:28:57 +08:00
class="menubar__button"
:class="{ 'is-active': nodes.todo_list.active() }"
@click="nodes.todo_list.command"
>
2018-08-22 22:20:56 +08:00
<icon name="checklist" />
</button>
</div>
</div>
<div class="editor__content" slot="content" slot-scope="props">
2018-08-23 01:28:57 +08:00
<h1>
Todo List
</h1>
<ul data-type="todo_list">
2018-08-22 22:20:56 +08:00
<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>
2018-08-23 01:28:57 +08:00
</div>
2018-08-22 22:20:56 +08:00
</editor>
</div>
</template>
<script>
import Icon from 'Components/Icon'
import { Editor } from 'tiptap'
export default {
2018-08-23 01:28:57 +08:00
components: {
Editor,
Icon,
},
methods: {
onUpdate(state) {
// console.log(state.doc.toJSON())
},
},
2018-08-22 22:20:56 +08:00
}
</script>