feat: 获取博客API添加描述字段

This commit is contained in:
2025-12-20 23:09:03 +08:00
parent fbc12f97db
commit 4d30605872

View File

@@ -5,6 +5,7 @@ export async function getBlog(id: string, password?: string) {
return clientFetch<{
id: string;
title: string;
description: string;
createdAt: string;
content: string;
}>(`/api/blog/${id}` + (password ? `?p=${password}` : ''));