2018-05-02 01:05:36 +01:00
|
|
|
|
<svelte:head>
|
2018-01-21 19:07:16 +00:00
|
|
|
|
<title>Pinafore – Local</title>
|
2018-05-02 01:05:36 +01:00
|
|
|
|
</svelte:head>
|
2018-02-13 06:06:05 +00:00
|
|
|
|
<Layout page='local'>
|
2018-05-02 01:05:36 +01:00
|
|
|
|
<LazyPage {pageComponent} {params} />
|
2018-01-07 04:44:47 +00:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
2018-01-19 07:37:43 +00:00
|
|
|
|
import Layout from './_components/Layout.html'
|
2018-03-14 00:14:57 +00:00
|
|
|
|
import LazyPage from './_components/LazyPage.html'
|
|
|
|
|
import pageComponent from './_pages/local.html'
|
2018-01-07 04:44:47 +00:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
2018-01-19 07:37:43 +00:00
|
|
|
|
Layout,
|
2018-03-14 00:14:57 +00:00
|
|
|
|
LazyPage
|
|
|
|
|
},
|
|
|
|
|
data: () => ({
|
|
|
|
|
pageComponent
|
|
|
|
|
})
|
2018-01-19 07:37:43 +00:00
|
|
|
|
}
|
2018-01-07 04:44:47 +00:00
|
|
|
|
</script>
|