1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-01-25 13:09:19 +01:00

21 lines
440 B
HTML
Raw Normal View History

2018-01-06 20:44:47 -08:00
<:Head>
2018-01-21 11:07:16 -08:00
<title>Pinafore Notifications</title>
2018-01-06 20:44:47 -08:00
</:Head>
<Layout page='notifications'>
<LazyPage :pageComponent :params />
2018-01-06 20:44:47 -08:00
</Layout>
<script>
import Layout from './_components/Layout.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/notifications.html'
2018-01-06 20:44:47 -08:00
export default {
components: {
2018-01-18 23:37:43 -08:00
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
2018-01-06 20:44:47 -08:00
</script>