1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00

21 lines
449 B
HTML
Raw Normal View History

<svelte:head>
2018-01-21 11:07:16 -08:00
<title>Pinafore Settings</title>
</svelte:head>
2018-01-07 13:38:12 -08:00
<Layout page='settings'>
<LazyPage {pageComponent} {params} />
2018-01-07 13:38:12 -08:00
</Layout>
<script>
import Layout from '../_components/Layout.html'
import LazyPage from '../_components/LazyPage.html'
import pageComponent from '../_pages/settings/index.html'
2018-01-07 13:38:12 -08:00
export default {
components: {
2018-01-08 17:44:29 -08:00
Layout,
LazyPage
},
data: () => ({
pageComponent
})
}
2018-01-13 12:12:17 -08:00
</script>