Cost units can be edited

This commit is contained in:
2026-02-08 20:06:38 +01:00
parent 6fc65e195c
commit bccfc11687
53 changed files with 2021 additions and 29 deletions

View File

@@ -25,7 +25,7 @@ const globalProps = reactive({
onMounted(async () => {
const response = await fetch('/api/v1/retreive-global-data');
const data = await response.json();
Object.assign(globalProps, data); // reactive wird automatisch aktualisiert
Object.assign(globalProps, data);
});
@@ -131,7 +131,23 @@ const props = defineProps({
<!-- Footer -->
<footer class="footer">
&copy; 2026 Your Company
<table>
<tr>
<td>Version 4.0.0</td>
<td>
mareike - Mdodernes Anmeldesystem und richti einfache Kostenerfassung
</td>
<td>
Impressum
</td>
<td>
Datenschutzerklärung
</td>
<td>
&copy 2022 - 2026
</td>
</tr>
</table>
</footer>
</div>