글쓰기 입력과 썸네일 표시 보정

This commit is contained in:
2026-05-02 10:18:35 +09:00
parent f3db10f015
commit 77191ef7da
12 changed files with 74 additions and 12 deletions

View File

@@ -35,6 +35,7 @@ const tagPosts = computed(() => posts.value
.map((post) => ({
title: post.title,
excerpt: post.excerpt,
featuredImage: post.featuredImage,
tag: tag.value?.name || slug.value.toUpperCase(),
publishedAt: formatPostDate(post.publishedAt),
to: `/post/${post.slug}`