This commit is contained in:
2026-01-02 15:44:10 +08:00
parent 4a2a3f82fc
commit 8ee70869ec
7 changed files with 198 additions and 80 deletions

View File

@@ -31,6 +31,7 @@ const formattedData = computed(() => {
alt: articles.alt || "no alter data available",
date: articles.date || "not-date-available",
tags: articles.tags || [],
categories: articles.categories || [],
published: articles.published || false,
};
}) || []
@@ -79,6 +80,7 @@ useHead({
:image="post.image"
:alt="post.alt"
:tags="post.tags"
:categories="post.categories"
:published="post.published" />
<BlogEmpty v-if="formattedData.length === 0" />
</div>