Split system views into individual ones
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<script setup>
|
||||
|
||||
import PrivateRegistry from '../components/PrivateRegistry.vue';
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<PrivateRegistry />
|
||||
</div>
|
||||
</template>
|
||||
@@ -9,8 +9,6 @@ import { SingleSelect } from 'pankow';
|
||||
import moment from 'moment-timezone';
|
||||
import SettingsItem from '../components/SettingsItem.vue';
|
||||
import Section from '../components/Section.vue';
|
||||
import SystemUpdate from '../components/SystemUpdate.vue';
|
||||
import PrivateRegistry from '../components/PrivateRegistry.vue';
|
||||
import CloudronModel from '../models/CloudronModel.js';
|
||||
import DashboardModel from '../models/DashboardModel.js';
|
||||
import SystemModel from '../models/SystemModel.js';
|
||||
@@ -118,8 +116,5 @@ onMounted(async () => {
|
||||
</div>
|
||||
</SettingsItem>
|
||||
</Section>
|
||||
|
||||
<SystemUpdate />
|
||||
<PrivateRegistry />
|
||||
</div>
|
||||
</template>
|
||||
@@ -0,0 +1,11 @@
|
||||
<script setup>
|
||||
|
||||
import SystemUpdate from '../components/SystemUpdate.vue';
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="content">
|
||||
<SystemUpdate />
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user