1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 05:04:21 +00:00
5e-drs/docs/.vuepress/theme/layouts/Layout.vue

21 lines
212 B
Vue
Raw Normal View History

2020-03-26 19:04:23 +01:00
<template>
<div>
2020-03-30 11:03:20 +02:00
<Page></Page>
2020-03-26 19:04:23 +01:00
</div>
</template>
<script>
2020-03-30 11:03:20 +02:00
import Page from '@theme/components/Page.vue'
2020-03-26 19:04:23 +01:00
export default {
name: 'Layout',
components: {
2020-03-30 11:03:20 +02:00
Page
2020-03-26 19:04:23 +01:00
},
computed: {
}
}
</script>