Start migration of System view

This commit is contained in:
Johannes Zellner
2025-01-23 18:36:30 +01:00
parent 84a1f40115
commit 2d1f24ca0f
6 changed files with 191 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
<script setup>
import { ref } from 'vue';
import { Button } from 'pankow';
import Section from '../components/Section.vue';
const taskLogsMenu = ref([]);
</script>
<template>
<div>
<Section :title="$t('settings.updates.title')">
<template #header-buttons>
<Button tool icon="fas fa-align-left" v-tooltip="$t('settings.updates.showLogsAction')" :menu="taskLogsMenu" :disabled="!taskLogsMenu.length"/>
</template>
<p v-html="$t('settings.updates.description')"></p>
</Section>
</div>
</template>