pinafore/routes/index.html

21 lines
428 B
HTML
Raw Normal View History

<svelte:head>
2018-01-21 20:07:16 +01:00
<title>Pinafore Home</title>
</svelte:head>
<Layout page='home'>
<LazyPage {pageComponent} {params} />
2018-01-07 00:51:25 +01:00
</Layout>
<script>
2018-01-09 03:14:21 +01:00
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/index.html'
2018-01-07 00:51:25 +01:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>