NUXT_E2003

abortNavigation() called outside middleware.

E2003

abortNavigation() was called outside a route middleware. It can only cancel navigation from within a middleware handler, so calling it from a component, plugin, composable, or a callback that lost the middleware context fails.

Resolution

Move the abortNavigation() call into the body of a defineNuxtRouteMiddleware() handler.

Read more in Docs > API > Utils > Abort Navigation.
Was this helpful?