1
0

feat: 添加网站底部栏

This commit is contained in:
2025-10-09 22:57:12 +08:00
parent bafaaed156
commit c40cb54350
2 changed files with 53 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
<script setup>
import DefaultTheme from 'vitepress/theme';
import DocContentFooter from './DocContentFooter.vue';
import SiteFooter from './SiteFooter.vue';
const { Layout } = DefaultTheme;
</script>
@@ -11,5 +12,8 @@ const { Layout } = DefaultTheme;
<hr class="custom__divider" />
<DocContentFooter />
</template>
<template #layout-bottom>
<SiteFooter />
</template>
</Layout>
</template>