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

21 lines
395 B
HTML
Raw Normal View History

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