1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-01 14:26:45 +01:00

21 lines
462 B
HTML
Raw Normal View History

<Title name="Follow requests" />
2018-03-16 09:18:40 -07:00
<Layout page='muted'>
<LazyPage {pageComponent} {params} />
2018-03-16 09:18:40 -07:00
</Layout>
<script>
import Layout from './_components/Layout.html'
import Title from './_components/Title.html'
2018-03-16 09:18:40 -07:00
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/requests.html'
export default {
components: {
Layout,
Title,
2018-03-16 09:18:40 -07:00
LazyPage
},
data: () => ({
pageComponent
})
}
</script>