This commit is contained in:
parent
2dd3c05805
commit
6d873c8366
22 changed files with 444 additions and 156 deletions
13
src/pages/AddEntryPage.vue
Normal file
13
src/pages/AddEntryPage.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue