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

22 lines
494 B
HTML
Raw Normal View History

<Title name="Followers" />
2018-04-22 20:06:54 +02:00
<Layout page='tags'>
<LazyPage {pageComponent} {params} />
2018-04-22 20:06:54 +02:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import Title from '../../_components/Title.html'
2018-04-22 20:06:54 +02:00
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/accounts/[accountId]/followers.html'
export default {
components: {
Layout,
Title,
2018-04-22 20:06:54 +02:00
LazyPage
},
data: () => ({
pageComponent
})
}
</script>