pinafore/src/routes/notifications.html

21 lines
374 B
HTML

<Title name="Notifications" />
<LazyPage {pageComponent} {params} />
<script>
import Title from './_components/Title.html'
import LazyPage from './_components/LazyPage.html'
import pageComponent from './_pages/notifications.html'
export default {
components: {
Title,
LazyPage
},
data: () => ({
pageComponent
})
}
</script>