21 lines
452 B
HTML
21 lines
452 B
HTML
<svelte:head>
|
||
<title>Pinafore – Community</title>
|
||
</svelte:head>
|
||
<Layout page='community'>
|
||
<LazyPage {pageComponent} {params} />
|
||
</Layout>
|
||
<script>
|
||
import Layout from '../_components/Layout.html'
|
||
import LazyPage from '../_components/LazyPage.html'
|
||
import pageComponent from '../_pages/community/index.html'
|
||
|
||
export default {
|
||
components: {
|
||
Layout,
|
||
LazyPage
|
||
},
|
||
data: () => ({
|
||
pageComponent
|
||
})
|
||
}
|
||
</script> |