feat: Implement initial Vue 3 application structure with SSR, routing, authentication, and core dashboard components.

This commit is contained in:
2026-01-19 00:37:35 +07:00
parent 9f521c76f4
commit eed14fa0e5
14 changed files with 1029 additions and 127 deletions

View File

@@ -36,7 +36,7 @@ app.get("*", async (c) => {
app.provide("honoContext", c);
const auth = useAuthStore();
auth.$reset();
auth.initialized = false;
// auth.initialized = false;
await auth.init();
await router.push(url.pathname);
await router.isReady();