Implement app update view

This commit is contained in:
Johannes Zellner
2025-02-21 20:58:43 +01:00
parent d77aaded39
commit 7d35c9a8eb
4 changed files with 161 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ import { ref, onMounted, onUnmounted, useTemplateRef, computed } from 'vue';
import { Button, ButtonGroup, TabView } from 'pankow';
import Info from '../components/app/Info.vue';
import Eventlog from '../components/app/Eventlog.vue';
import Updates from '../components/app/Updates.vue';
import Uninstall from '../components/app/Uninstall.vue';
import AppsModel from '../models/AppsModel.js';
import { APP_TYPES } from '../constants.js';
@@ -179,7 +180,7 @@ onUnmounted(() => {
<template #security></template>
<template #email></template>
<template #cron></template>
<template #updates></template>
<template #updates><Updates :app="app"/></template>
<template #backups></template>
<template #repair></template>
<template #eventlog><Eventlog :app="app"/></template>