pinafore/routes/local.html

21 lines
431 B
HTML
Raw Normal View History

<svelte:head>
2018-01-21 20:07:16 +01:00
<title>Pinafore Local</title>
</svelte:head>
<Layout page='local'>
<LazyPage {pageComponent} {params} />
2018-01-07 05:44:47 +01:00
</Layout>
<script>
2018-01-19 08:37:43 +01:00
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/local.html'
2018-01-07 05:44:47 +01:00
export default {
components: {
2018-01-19 08:37:43 +01:00
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-19 08:37:43 +01:00
}
2018-01-07 05:44:47 +01:00
</script>