pinafore/routes/statuses/[statusId]/index.html

21 lines
468 B
HTML
Raw Normal View History

<svelte:head>
2018-02-09 06:38:33 +00:00
<title>Pinafore Status</title>
</svelte:head>
2018-02-03 18:57:45 +00:00
<Layout page='statuses' >
<LazyPage {pageComponent} {params} />
2018-01-28 23:44:33 +00:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/statuses/[statusId]/index.html'
2018-01-28 23:44:33 +00:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-28 23:44:33 +00:00
}
</script>