test work in progress

This commit is contained in:
2024-03-12 20:58:13 +01:00
parent 4b298fa332
commit 6dfd99dc88
11 changed files with 865 additions and 61 deletions

4
src/state/entry.ts Normal file
View File

@@ -0,0 +1,4 @@
import { Entry, localStorageKey, parseFromPossibleString } from "@/data/entries";
import { Ref, ref } from "vue";
export const entries: Ref<Entry[]> = ref(parseFromPossibleString(localStorage.getItem(localStorageKey)))