wip
This commit is contained in:
10
src/App.vue
10
src/App.vue
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user