Pinafore-Web-Client-Frontend/routes/accounts/[accountId]/follows.html

22 lines
468 B
HTML
Raw Normal View History

<svelte:head>
2018-04-22 20:06:54 +02:00
<title>Pinafore Follows</title>
</svelte:head>
2018-04-22 20:06:54 +02:00
<Layout page='tags'>
<LazyPage {pageComponent} {params} />
2018-04-22 20:06:54 +02:00
</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>