renamed some components

This commit is contained in:
Philipp Kühn
2018-11-08 22:44:07 +01:00
parent 1728a247ea
commit cb2617d439
12 changed files with 35 additions and 35 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="editor">
<menu-bar :editor="editor">
<editor-menu-bar :editor="editor">
<div class="menubar" slot-scope="{ commands, isActive }">
<button
@@ -36,7 +36,7 @@
</button>
</div>
</menu-bar>
</editor-menu-bar>
<editor-content class="editor__content" :editor="editor" />
</div>
@@ -44,7 +44,7 @@
<script>
import Icon from 'Components/Icon'
import { Editor, EditorContent, MenuBar } from 'tiptap'
import { Editor, EditorContent, EditorMenuBar } from 'tiptap'
import {
CodeBlock,
HardBreak,
@@ -59,7 +59,7 @@ import {
export default {
components: {
EditorContent,
MenuBar,
EditorMenuBar,
Icon,
},
data() {