This commit is contained in:
2026-03-03 10:41:26 +03:00
parent 944e53df63
commit f925ea1cf1
17 changed files with 271 additions and 261 deletions

View File

@@ -2,6 +2,7 @@
import { useAuthStore } from '@/stores/auth.ts'
import SignInView from '@/views/SignInView.vue'
import MainView from '@/views/MainView.vue'
import TestView from '@/views/TestView.vue'
const authStore = useAuthStore()
</script>
@@ -9,8 +10,9 @@ const authStore = useAuthStore()
<template>
<div class="h-screen bg-gray-200">
<div class="h-full m-auto p-4">
<MainView v-if="authStore.isAuth" />
<SignInView v-else />
<!-- <MainView v-if="authStore.isAuth" />-->
<!-- <SignInView v-else />-->
<TestView />
</div>
</div>
</template>