update menu + add event page

This commit is contained in:
Emily
2024-06-14 15:41:49 +02:00
parent 16147da824
commit 96abb174d1
15 changed files with 191 additions and 119 deletions

View File

@@ -23,7 +23,7 @@ const limitsInfo = ref<{
onMounted(async () => {
if (route.query.just_logged) return location.href = '/';
limitsInfo.value = await $fetch("/api/project/limits_info", signHeaders());
limitsInfo.value = await $fetch<any>("/api/project/limits_info", signHeaders());
});