8 lines
229 B
JavaScript
8 lines
229 B
JavaScript
|
export default defineNuxtRouteMiddleware((to, from) => {
|
||
|
const authStore = useAuthStore()
|
||
|
if (authStore.check && !authStore.user?.admin) {
|
||
|
console.log('redirecting to home')
|
||
|
return navigateTo({ name: 'home' })
|
||
|
}
|
||
|
})
|