This commit is contained in:
2026-03-09 12:30:52 +03:00
parent f925ea1cf1
commit 24c935df5f
15 changed files with 191 additions and 79 deletions

View File

@@ -2,17 +2,15 @@
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>
<template>
<div class="h-screen bg-gray-200">
<div class="h-full m-auto p-4">
<!-- <MainView v-if="authStore.isAuth" />-->
<!-- <SignInView v-else />-->
<TestView />
<div class="h-screen bg-gray-500">
<div class="h-full m-auto py-4 md:w-4/5 sm:w-full w-full">
<MainView v-if="authStore.isAuth" />
<SignInView v-else />
</div>
</div>
</template>