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

21 lines
391 B
HTML
Raw Permalink Normal View History

<Title name="Status" />
<LazyPage {pageComponent} {params} />
2018-01-29 00:44:33 +01:00
<script>
import Title from '../../_components/Title.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/statuses/[statusId]/index.html'
2018-01-29 00:44:33 +01:00
export default {
components: {
Title,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-29 00:44:33 +01:00
}
</script>