pinafore/routes/accounts/[accountId].html

21 wiersze
450 B
HTML

<svelte:head>
<title>Pinafore – Profile</title>
</svelte:head>
<Layout page='tags'>
<LazyPage {pageComponent} {params} />
</Layout>
<script>
import Layout from '../_components/Layout.html'
import LazyPage from '../_components/LazyPage.html'
import pageComponent from '../_pages/accounts/[accountId].html'
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>