1
0

feat: 自动生成文章列表

This commit is contained in:
2025-10-07 18:27:46 +08:00
parent 5860e07571
commit 13e635465c
4 changed files with 138 additions and 1 deletions

View File

@@ -8,3 +8,22 @@ hero:
text: ""
tagline: 一个分享技术、资源,记录学习与生活的博客。
---
<script setup>
import { data as contentListData } from './.vitepress/content-list.data.mts';
let { contentListByDate } = contentListData;
</script>
<template v-for="yearItem in contentListByDate">
<h2>{{ yearItem.year }} 年</h2>
<template v-for="monthItem in yearItem.items">
<h3>{{ monthItem.month }} 月</h3>
<ul>
<li v-for="postItem in monthItem.items" :key="postItem.slug">
<a :href="postItem.url">{{ postItem.title }}</a>
<span>&nbsp;</span>
<Badge type="info" :text="postItem['created-at'].split(' ')[0]" />
</li>
</ul>
</template>
</template>