mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 13:23:14 +01:00
* add missing translations and translate page titles * fix: actually use the declared localized variables * lint and prettier fixes * add missing translations for toasts and confirms * use components for shift/enter keys, add pluralization for photos, and fix primary photo conditional * remove prop defaults since we're computing these anyways
22 lines
456 B
Vue
22 lines
456 B
Vue
<script setup lang="ts">
|
|
import { useI18n } from "vue-i18n";
|
|
|
|
const { t } = useI18n();
|
|
|
|
definePageMeta({
|
|
middleware: ["auth"],
|
|
});
|
|
useHead({
|
|
title: "HomeBox | " + t("menu.maintenance"),
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<BaseContainer class="flex flex-col gap-4">
|
|
<BaseSectionHeader> {{ $t("menu.maintenance") }} </BaseSectionHeader>
|
|
<MaintenanceListView></MaintenanceListView>
|
|
</BaseContainer>
|
|
</div>
|
|
</template>
|