Middleware
You can enable auth
middleware either globally or per route. When this middleware is enabled on a route and loggedIn
is false
user will be redirected to redirect.login
route. (/login
by default)
Setting per route:
Globally setting in nuxt.config.js
:
In case of global usage, You can set auth
option to false
in a specific component and the middleware will ignore that route.
You can set auth
option to guest
in a specific component. When this middleware is enabled on a route and loggedIn
is true
user will be redirected to redirect.home
route. (/
by default)
Last updated