2018-11-13 02:28:43 +00:00
|
|
|
<Title name="Instances" settingsPage={true} />
|
2018-01-13 20:12:17 +00:00
|
|
|
<Layout page='settings'>
|
2018-05-02 00:05:36 +00:00
|
|
|
<LazyPage {pageComponent} {params} />
|
2018-01-13 20:12:17 +00:00
|
|
|
</Layout>
|
|
|
|
<script>
|
|
|
|
import Layout from '../../_components/Layout.html'
|
2018-11-13 02:28:43 +00:00
|
|
|
import Title from '../../_components/Title.html'
|
2018-03-14 00:14:57 +00:00
|
|
|
import LazyPage from '../../_components/LazyPage.html'
|
|
|
|
import pageComponent from '../../_pages/settings/instances/index.html'
|
2018-01-13 20:12:17 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Layout,
|
2018-11-13 02:28:43 +00:00
|
|
|
Title,
|
2018-03-14 00:14:57 +00:00
|
|
|
LazyPage
|
2018-01-13 20:12:17 +00:00
|
|
|
},
|
2018-03-14 00:14:57 +00:00
|
|
|
data: () => ({
|
|
|
|
pageComponent
|
|
|
|
})
|
2018-01-13 20:12:17 +00:00
|
|
|
}
|
|
|
|
</script>
|