1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 15:17:37 +01:00

21 lines
459 B
HTML
Raw Normal View History

2018-01-07 16:00:42 -08:00
<:Head>
2018-02-08 22:38:33 -08:00
<title>Pinafore Add an Instance</title>
2018-01-07 16:00:42 -08:00
</:Head>
<Layout page='settings'>
<LazyPage :pageComponent :params />
2018-01-07 16:00:42 -08:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/settings/instances/add.html'
2018-01-13 19:23:05 -08:00
2018-01-07 16:00:42 -08:00
export default {
components: {
2018-01-08 17:44:29 -08:00
Layout,
LazyPage
2018-01-07 16:00:42 -08:00
},
data: () => ({
pageComponent
})
2018-01-07 16:00:42 -08:00
}
</script>