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

21 lines
399 B
HTML

<Title name="Followers" />
<LazyPage {pageComponent} {params} />
<script>
import Title from '../../_components/Title.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/accounts/[accountId]/followers.html'
export default {
components: {
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>