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.
24 lines
579 B
24 lines
579 B
<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";
|
|
import "./styles/index.scss"
|
|
|
|
export default {
|
|
components: {
|
|
Footer,
|
|
Layout, // Use the default layout
|
|
},
|
|
};
|
|
</script> |