1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 14:56:48 +01:00

21 lines
454 B
HTML
Raw Normal View History

2018-01-28 15:44:33 -08:00
<:Head>
2018-02-08 22:38:33 -08:00
<title>Pinafore Status</title>
2018-01-28 15:44:33 -08:00
</:Head>
2018-02-03 10:57:45 -08:00
<Layout page='statuses' >
<LazyPage :pageComponent :params />
2018-01-28 15:44:33 -08: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 15:44:33 -08:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-28 15:44:33 -08:00
}
</script>