mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
20 lines
212 B
Vue
20 lines
212 B
Vue
<template>
|
|
<div>
|
|
<Page></Page>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Page from '@theme/components/Page.vue'
|
|
|
|
export default {
|
|
name: 'Layout',
|
|
|
|
components: {
|
|
Page
|
|
},
|
|
|
|
computed: {
|
|
}
|
|
}
|
|
</script>
|