2018-01-23 06:16:27 +01:00
|
|
|
|
<:Head>
|
2018-03-15 06:14:06 +01:00
|
|
|
|
<title>Pinafore – Profile</title>
|
2018-01-23 06:16:27 +01:00
|
|
|
|
</:Head>
|
2018-02-13 07:06:05 +01:00
|
|
|
|
<Layout page='tags'>
|
2018-03-14 01:14:57 +01:00
|
|
|
|
<LazyPage :pageComponent :params />
|
2018-01-23 06:16:27 +01:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
|
|
|
|
import Layout from '../_components/Layout.html'
|
2018-03-14 01:14:57 +01:00
|
|
|
|
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,
|
2018-03-14 01:14:57 +01:00
|
|
|
|
LazyPage
|
|
|
|
|
},
|
|
|
|
|
data: () => ({
|
|
|
|
|
pageComponent
|
|
|
|
|
})
|
2018-01-23 06:16:27 +01:00
|
|
|
|
}
|
|
|
|
|
</script>
|