feat:#5 linted format

This commit is contained in:
Elmar Kresse
2024-01-31 15:47:32 +01:00
parent b08f839558
commit 9dc8df0cd2
6 changed files with 1631 additions and 387 deletions

View File

@@ -9,12 +9,12 @@ const items = computed(() => [
{
label: t("createCalendar"),
icon: "pi pi-fw pi-plus",
route: "/"
route: "/",
},
{
label: t("editCalendar"),
icon: "pi pi-fw pi-pencil",
route: "/edit"
route: "/edit",
},
{
label: t("rooms"),
@@ -24,29 +24,29 @@ const items = computed(() => [
{
label: t("roomFinderPage.roomSchedule"),
icon: "pi pi-fw pi-hourglass",
route: "/rooms/occupancy"
route: "/rooms/occupancy",
},
{
label: t("freeRooms.freeRooms"),
icon: "pi pi-fw pi-calendar",
route: "/rooms/free"
route: "/rooms/free",
},
],
},
{
label: t("faq"),
icon: "pi pi-fw pi-book",
route: "/faq"
route: "/faq",
},
{
label: t("imprint"),
icon: "pi pi-fw pi-id-card",
route: "/imprint"
route: "/imprint",
},
{
label: t("privacy"),
icon: "pi pi-fw pi-exclamation-triangle",
route: "/privacy-policy"
route: "/privacy-policy",
},
]);
</script>