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

22 lines
454 B
HTML
Raw Normal View History

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