pinafore/routes/lists/[listId].html

21 lines
477 B
HTML
Raw Normal View History

<Title name="List" />
2018-05-04 06:24:10 +02:00
<Layout page='lists/{params.listId}'>
<LazyPage {pageComponent} {params} />
2018-02-08 18:15:25 +01:00
</Layout>
<script>
import Layout from '../_components/Layout.html'
import Title from '../_components/Title.html'
import LazyPage from '../_components/LazyPage.html'
import pageComponent from '../_pages/lists/[listId].html'
2018-02-08 18:15:25 +01:00
export default {
components: {
Layout,
Title,
LazyPage
},
data: () => ({
pageComponent
})
2018-02-08 18:15:25 +01:00
}
</script>