21 lines
430 B
HTML
21 lines
430 B
HTML
|
<:Head>
|
|||
|
<title>Pinafore – Follow requests</title>
|
|||
|
</:Head>
|
|||
|
<Layout page='muted'>
|
|||
|
<LazyPage :pageComponent :params />
|
|||
|
</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>
|