重构:扩展默认主题的页脚配置

This commit is contained in:
2022-07-21 22:01:17 +08:00
parent a87b93dc0e
commit 92cc6fb8af
4 changed files with 74 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
<template>
<Layout>
<template #layout-bottom>
<Copyright />
</template>
</Layout>
</template>
<script lang="ts" setup>
import DefaultTheme from "vitepress/theme"
import Copyright from "./Copyright.vue"
const { Layout } = DefaultTheme
</script>
<style scoped>
</style>