pinafore/routes/settings/instances/index.html

21 lines
455 B
HTML
Raw Normal View History

2018-01-13 21:12:17 +01:00
<:Head>
2018-02-09 07:38:33 +01:00
<title>Pinafore Instances</title>
2018-01-13 21:12:17 +01:00
</:Head>
<Layout page='settings'>
<LazyPage :pageComponent :params />
2018-01-13 21:12:17 +01:00
</Layout>
<script>
import Layout from '../../_components/Layout.html'
import LazyPage from '../../_components/LazyPage.html'
import pageComponent from '../../_pages/settings/instances/index.html'
2018-01-13 21:12:17 +01:00
export default {
components: {
Layout,
LazyPage
2018-01-13 21:12:17 +01:00
},
data: () => ({
pageComponent
})
2018-01-13 21:12:17 +01:00
}
</script>