Remodeled database and api to prepare for move

This commit is contained in:
Alexis
2024-05-15 17:18:17 +02:00
parent 3a8e8b0947
commit 49e523485b
21 changed files with 479 additions and 274 deletions

View File

@@ -0,0 +1,12 @@
<script lang="ts" setup>
const route = useRoute()
const worldId = route.params.id
const { data: calendar } = await useLazyFetch(`/api/calendars/query?world_id=${worldId}`)
</script>
<template>
<pre>
{{ calendar }}
</pre>
</template>