1
0
Files
frost-zx.github.io/docs/.vitepress/theme/layout/CustomLayout.vue

20 lines
420 B
Vue

<script setup>
import DefaultTheme from 'vitepress/theme';
import ContentFooter from './ContentFooter.vue';
import SiteFooter from './SiteFooter.vue';
const { Layout } = DefaultTheme;
</script>
<template>
<Layout>
<template #doc-footer-before>
<hr class="custom__divider" />
<ContentFooter />
</template>
<template #layout-bottom>
<SiteFooter />
</template>
</Layout>
</template>