Add quest page

This commit is contained in:
2025-08-01 22:15:30 +02:00
parent 13ad0eeb56
commit 624bb7e124
12 changed files with 497 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
export const useTitleStore = defineStore('title', () => {
const title = ref<string | undefined>();
return { title };
});
if (import.meta.hot) {
import.meta.hot.accept(acceptHMRUpdate(useTitleStore, import.meta.hot));
}