1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 15:38:53 +01:00

21 lines
477 B
HTML
Raw Normal View History

<svelte:head>
2018-03-14 22:14:06 -07:00
<title>Pinafore Instance</title>
</svelte:head>
2018-01-13 12:12:17 -08:00
<Layout page='settings'>
<LazyPage {pageComponent} {params} />
2018-01-13 12:12:17 -08:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/settings/instances/[instanceName].html'
2018-01-13 12:12:17 -08:00
export default {
components: {
Layout,
LazyPage
2018-01-13 12:12:17 -08:00
},
2018-01-13 17:41:15 -08:00
data: () => ({
pageComponent
})
2018-01-13 12:12:17 -08:00
}
</script>