You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
550 B
23 lines
550 B
1 month ago
|
<template>
|
||
|
|
||
|
<Layout>
|
||
|
<template #default>
|
||
|
<Content /> <!-- Keep this in the default slot -->
|
||
|
</template>
|
||
|
</Layout>
|
||
|
<Footer /> <!-- Footer goes outside the default layout -->
|
||
|
<!-- </div> -->
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Footer from "../components/Footer.vue";
|
||
|
// Import the default theme layout
|
||
|
import Layout from "@vuepress/theme-default/lib/client/layouts/Layout.vue";
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
Footer,
|
||
|
Layout, // Use the default layout
|
||
|
},
|
||
|
};
|
||
|
</script>
|