2018-05-02 02:05:36 +02:00
|
|
|
|
<svelte:head>
|
2018-03-16 17:18:40 +01:00
|
|
|
|
<title>Pinafore – Follow requests</title>
|
2018-05-02 02:05:36 +02:00
|
|
|
|
</svelte:head>
|
2018-03-16 17:18:40 +01:00
|
|
|
|
<Layout page='muted'>
|
2018-05-02 02:05:36 +02:00
|
|
|
|
<LazyPage {pageComponent} {params} />
|
2018-03-16 17:18:40 +01:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
|
|
|
|
import Layout from './_components/Layout.html'
|
|
|
|
|
import LazyPage from './_components/LazyPage.html'
|
|
|
|
|
import pageComponent from './_pages/requests.html'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
Layout,
|
|
|
|
|
LazyPage
|
|
|
|
|
},
|
|
|
|
|
data: () => ({
|
|
|
|
|
pageComponent
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</script>
|