This commit is contained in:
2025-12-29 00:15:20 +08:00
parent ff9b8d6a87
commit a95f624fa2
24 changed files with 405 additions and 290 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import type { BlogPost } from "@/types/blog";
import { seoData } from "~/data";
import { formatDate } from "~/utils/helper";
const { path } = useRoute();
@@ -53,7 +54,7 @@ useHead({
:title="data.title"
:image="data.image"
:alt="data.alt"
:date="data.date"
:date="formatDate(articles.date)"
:description="data.description"
:tags="data.tags" />
<div