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

22 lines
490 B
HTML
Raw Normal View History

<Title name="Follows" />
2018-04-22 18:06:54 +00:00
<Layout page='tags'>
<LazyPage {pageComponent} {params} />
2018-04-22 18:06:54 +00:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
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: {
Layout,
Title,
2018-04-22 18:06:54 +00:00
LazyPage
},
data: () => ({
pageComponent
})
}
</script>