1
0

feat: 添加文章标签和更新日期信息显示

This commit is contained in:
2025-10-08 19:00:41 +08:00
parent 0a9d6b4622
commit fc400bca79
4 changed files with 92 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<script setup>
import DefaultTheme from 'vitepress/theme';
import DocContentFooter from './DocContentFooter.vue';
const { Layout } = DefaultTheme;
</script>
<template>
<Layout>
<template #doc-footer-before>
<hr class="custom__divider" />
<DocContentFooter />
</template>
</Layout>
</template>