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