opnform-host-nginx/client/middleware/guest.js

9 lines
196 B
JavaScript

export default defineNuxtRouteMiddleware(() => {
const authStore = useAuthStore()
if (authStore.check) {
console.log("redirecting to home")
return navigateTo({ name: "home" })
}
})