pinafore/routes/accounts/[accountId].html

21 lines
450 B
HTML
Raw Normal View History

<svelte:head>
2018-03-15 06:14:06 +01:00
<title>Pinafore Profile</title>
</svelte:head>
<Layout page='tags'>
<LazyPage {pageComponent} {params} />
2018-01-23 06:16:27 +01:00
</Layout>
<script>
import Layout from '../_components/Layout.html'
import LazyPage from '../_components/LazyPage.html'
import pageComponent from '../_pages/accounts/[accountId].html'
2018-01-23 06:16:27 +01:00
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
2018-01-23 06:16:27 +01:00
}
</script>