feat: query param based navigation

This commit is contained in:
2025-12-13 21:56:52 +01:00
parent 657f8630c3
commit 464277e58f
7 changed files with 18 additions and 56 deletions

View File

@@ -96,7 +96,8 @@ export const useContactStore = defineStore("contact", {
onComplete: () => {
setTimeout(() => {
this.isOutro = false;
navigateTo("/");
const router = useRouter();
router.push({ query: {} });
}, 2000);
},
});