PageLayout.vue 255 B

123456789101112131415
  1. <script setup>
  2. import DefaultTheme from 'vitepress/theme'
  3. import Footer from './component/Footer.vue'
  4. const { Layout } = DefaultTheme
  5. </script>
  6. <template>
  7. <Layout>
  8. <template #layout-bottom>
  9. <Footer/>
  10. </template>
  11. </Layout>
  12. </template>