Files
cloudron-box/dashboard/src/components/SystemUpdate.vue
T

22 lines
537 B
Vue
Raw Normal View History

2025-01-23 18:36:30 +01:00
<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>