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

21 lines
450 B
HTML
Raw Normal View History

2018-03-08 02:04:20 +00:00
<:Head>
<title>Pinafore Reply</title>
</:Head>
<Layout page='reply' >
<LazyPage :pageComponent :params />
2018-03-08 02:04:20 +00:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/statuses/[statusId]/reply.html'
2018-03-08 02:04:20 +00:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-03-08 02:04:20 +00:00
}
</script>