pinafore/routes/settings/instances/add.html

21 lines
456 B
HTML
Raw Normal View History

2018-01-08 01:00:42 +01:00
<:Head>
2018-04-04 03:01:22 +02:00
<title>Pinafore Add instance</title>
2018-01-08 01:00:42 +01:00
</:Head>
<Layout page='settings'>
<LazyPage :pageComponent :params />
2018-01-08 01:00:42 +01: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-14 04:23:05 +01:00
2018-01-08 01:00:42 +01:00
export default {
components: {
2018-01-09 02:44:29 +01:00
Layout,
LazyPage
2018-01-08 01:00:42 +01:00
},
data: () => ({
pageComponent
})
2018-01-08 01:00:42 +01:00
}
</script>