Add app event log view

This commit is contained in:
Johannes Zellner
2025-02-21 16:30:59 +01:00
parent fae1b4dec1
commit d77aaded39
5 changed files with 531 additions and 458 deletions

View File

@@ -9,6 +9,7 @@ const t = i18n.t;
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 Uninstall from '../components/app/Uninstall.vue';
import AppsModel from '../models/AppsModel.js';
import { APP_TYPES } from '../constants.js';
@@ -167,7 +168,7 @@ onUnmounted(() => {
<TabView ref="tabView" :tabs="tabs" @changed="onTabChanged" tab-position="left">
<template #info><Info :app="app"/></template>
<template #display>Display</template>
<template #display></template>
<template #location></template>
<template #proxy></template>
<template #access></template>
@@ -181,7 +182,7 @@ onUnmounted(() => {
<template #updates></template>
<template #backups></template>
<template #repair></template>
<template #eventlog></template>
<template #eventlog><Eventlog :app="app"/></template>
<template #uninstall><Uninstall :app="app"/></template>
</TabView>
</div>