This commit is contained in:
Philipp Kühn 2020-11-13 16:46:12 +01:00
parent f329229e03
commit 41ce8c0743
2 changed files with 6 additions and 2 deletions

View File

@ -41,7 +41,12 @@ export default {
flattenedItems() {
const flattenedItems = []
this.items.forEach(({ title, link, redirect, items }) => {
this.items.forEach(({
title,
link,
redirect,
items,
}) => {
flattenedItems.push({
title,
link,

View File

@ -6,7 +6,6 @@
<script>
import { Editor, EditorContent, defaultExtensions } from '@tiptap/vue-starter-kit'
import Strike from '@tiptap/extension-strike'
import Highlight from '@tiptap/extension-highlight'
export default {