pinafore/routes/accounts/[accountId]/followers.html

22 lines
458 B
HTML
Raw Normal View History

2018-04-22 18:06:54 +00:00
<:Head>
<title>Pinafore Followers</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]/followers.html'
export default {
components: {
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>