lint code

This commit is contained in:
2023-10-27 22:54:36 +02:00
parent b1baf8babf
commit 95e3a1de73
2 changed files with 2 additions and 3 deletions

View File

@@ -5,8 +5,7 @@ const items = [
label: 'Talents',
to: '/talents',
icon: 'i-ph-users-bold',
},
{
}, {
label: 'Bookmarks',
to: '/bookmarks',
icon: 'i-ph-bookmark-simple-bold',

View File

@@ -1,5 +1,5 @@
<script lang="ts" setup>
import type { Post } from '~~/types';
import type { Post } from '~~/types'
const route = useRoute()
const { data: postContent } = await useAsyncData<Post>(`writing:${route.params.slug}`, async () => await queryContent<Post>(`/writing/${route.params.slug}`).findOne())