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

21 wiersze
450 B
HTML

<:Head>
<title>Pinafore – Reply</title>
</:Head>
<Layout page='reply' >
<LazyPage :pageComponent :params />
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/statuses/[statusId]/reply.html'
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>