pinafore/routes/accounts/[accountId].html

21 lines
444 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<:Head>
<title>Pinafore {{profileName}}</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>