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

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

@@ -24,6 +24,7 @@ const formatPostDate = (value) => {
const postCards = computed(() => posts.value.map((post) => ({
title: post.title,
excerpt: post.excerpt,
featuredImage: post.featuredImage,
tag: post.tags?.[0]?.toUpperCase() || 'POST',
publishedAt: formatPostDate(post.publishedAt),
to: `/post/${post.slug}`