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

21 lines
399 B
HTML
Raw Normal View History

<Title name="Followers" />
<LazyPage {pageComponent} {params} />
2018-04-22 20:06:54 +02:00
<script>
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: {
Title,
2018-04-22 20:06:54 +02:00
LazyPage
},
data: () => ({
pageComponent
})
}
</script>