16 lines
319 B
Vue
16 lines
319 B
Vue
<script setup>
|
|
import DefaultTheme from 'vitepress/theme';
|
|
import DocContentFooter from './DocContentFooter.vue';
|
|
|
|
const { Layout } = DefaultTheme;
|
|
</script>
|
|
|
|
<template>
|
|
<Layout>
|
|
<template #doc-footer-before>
|
|
<hr class="custom__divider" />
|
|
<DocContentFooter />
|
|
</template>
|
|
</Layout>
|
|
</template>
|