pinafore/routes/lists/[listId].html

21 lines
428 B
HTML
Raw Normal View History

2018-02-08 18:15:25 +01:00
<:Head>
2018-03-15 06:14:06 +01:00
<title>Pinafore List</title>
2018-02-08 18:15:25 +01:00
</:Head>
<Layout page='lists'>
<LazyPage :pageComponent :params />
2018-02-08 18:15:25 +01:00
</Layout>
<script>
import Layout from '../_components/Layout.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,
LazyPage
},
data: () => ({
pageComponent
})
2018-02-08 18:15:25 +01:00
}
</script>