ilk commit
This commit is contained in:
46
src/router/index.ts
Normal file
46
src/router/index.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { createRouter, createWebHistory } from 'vue-router'
|
||||
import { useUsersStore } from '@/stores/usersStore'
|
||||
import Dashboard from '@/views/Dashboard.vue'
|
||||
import Auth from '@/module/auth/routes'
|
||||
import Uyeler from '@/module/uyeler/routes'
|
||||
import Cekilisler from '@/module/cekilisler/routes'
|
||||
import Kullanicilar from '@/module/kullanicilar/routes'
|
||||
import SiteYonetimi from '@/module/site-yonetimi/routes'
|
||||
import Settings from '@/module/ayarlar/routes'
|
||||
import Logs from '@/module/sistem-gunlugu/routes'
|
||||
import Profil from '@/module/Profil/routes'
|
||||
import Muhasebe from '@/module/muhasebe/routes'
|
||||
|
||||
const router = createRouter({
|
||||
sensitive: undefined,
|
||||
strict: undefined,
|
||||
history: createWebHistory(import.meta.env.BASE_URL),
|
||||
routes: [
|
||||
...Auth,
|
||||
...Uyeler,
|
||||
...Cekilisler,
|
||||
...Kullanicilar,
|
||||
...SiteYonetimi,
|
||||
...Settings,
|
||||
...Logs,
|
||||
...Profil,
|
||||
...Muhasebe,
|
||||
{
|
||||
path: '/',
|
||||
name: 'Dashboard',
|
||||
component: Dashboard,
|
||||
meta: {
|
||||
authRequired: true
|
||||
}
|
||||
}
|
||||
]
|
||||
})
|
||||
router.beforeEach((to, from) => {
|
||||
const usersStore = useUsersStore()
|
||||
|
||||
if (to.meta.authRequired && !usersStore.userIsAuth && from.name !== 'Login') {
|
||||
router.push('/login')
|
||||
}
|
||||
})
|
||||
|
||||
export default router
|
||||
Reference in New Issue
Block a user