2025-03-11
Some checks failed
ci/woodpecker/push/publish_instable Pipeline failed

This commit is contained in:
gcch 2025-03-11 21:53:20 +01:00
commit 6d873c8366
22 changed files with 444 additions and 156 deletions

View file

@ -0,0 +1,13 @@
<script setup lang="ts">
import { useEntryStore } from "@/stores/entry";
import { onMounted } from "vue";
const entryStore = useEntryStore();
onMounted(() => {
console.debug(entryStore.entry);
console.debug(entryStore.tmdbData);
});
</script>
<template></template>