mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 21:24:18 +00:00
27 lines
365 B
Vue
27 lines
365 B
Vue
<template>
|
|
<div>
|
|
<Home v-if="$page.frontmatter.home" />
|
|
|
|
<Page v-else>
|
|
<template #top>
|
|
<slot name="page-top" />
|
|
</template>
|
|
<template #bottom>
|
|
<slot name="page-bottom" />
|
|
</template>
|
|
</Page>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'Layout',
|
|
|
|
components: {
|
|
},
|
|
|
|
computed: {
|
|
}
|
|
}
|
|
</script>
|