pinafore/routes/accounts/[accountId].html

21 wiersze
436 B
HTML

<:Head>
<title>Pinafore – Profile</title>
</: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>