pinafore/routes/lists/[listId].html

21 wiersze
428 B
HTML

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