@@ -147,6 +147,7 @@ export interface Router {
147
147
go ( distance : number ) : void
148
148
149
149
beforeEach ( guard : NavigationGuardWithThis < undefined > ) : ( ) => void
150
+ beforeResolve ( guard : NavigationGuardWithThis < undefined > ) : ( ) => void
150
151
afterEach ( guard : PostNavigationGuard ) : ( ) => void
151
152
152
153
onError ( handler : ErrorHandler ) : ( ) => void
@@ -170,6 +171,7 @@ export function createRouter({
170
171
const matcher = createRouterMatcher ( routes , { } )
171
172
172
173
const beforeGuards = useCallbacks < NavigationGuardWithThis < undefined > > ( )
174
+ const beforeResolveGuards = useCallbacks < NavigationGuardWithThis < undefined > > ( )
173
175
const afterGuards = useCallbacks < PostNavigationGuard > ( )
174
176
const currentRoute = ref < RouteLocationNormalizedLoaded > (
175
177
START_LOCATION_NORMALIZED
@@ -452,6 +454,14 @@ export function createRouter({
452
454
453
455
// run the queue of per route beforeEnter guards
454
456
await runGuardQueue ( guards )
457
+
458
+ // check global guards beforeEach
459
+ guards = [ ]
460
+ for ( const guard of beforeResolveGuards . list ( ) ) {
461
+ guards . push ( guardToPromiseFn ( guard , to , from ) )
462
+ }
463
+
464
+ await runGuardQueue ( guards )
455
465
}
456
466
457
467
function triggerAfterEach (
@@ -660,6 +670,7 @@ export function createRouter({
660
670
forward : ( ) => history . go ( 1 ) ,
661
671
662
672
beforeEach : beforeGuards . add ,
673
+ beforeResolve : beforeResolveGuards . add ,
663
674
afterEach : afterGuards . add ,
664
675
665
676
onError : errorHandlers . add ,
0 commit comments