初始化
This commit is contained in:
26
docs/.vitepress/layouts/Default.vue
Normal file
26
docs/.vitepress/layouts/Default.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<!-- .vitepress/layouts/Default.vue -->
|
||||
<template>
|
||||
<div class="custom-layout">
|
||||
<VPLayout>
|
||||
<template #layout-bottom>
|
||||
<footer class="footer">
|
||||
<p>© 2024 菲鸽科技</p>
|
||||
<p><a href="https://beian.miit.gov.cn" target="_blank">粤ICP备2024160998号</a></p>
|
||||
<BuildInfo />
|
||||
</footer>
|
||||
</template>
|
||||
</VPLayout>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import VPLayout from '@theme-default/Layout.vue'
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.footer {
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user