@@ -18,6 +18,9 @@ import {
18
18
ScrollToPosition ,
19
19
ScrollPosition ,
20
20
scrollToPosition ,
21
+ saveScrollOnLeave ,
22
+ getScrollKey ,
23
+ getSavedScroll ,
21
24
} from './utils/scroll'
22
25
import { createRouterMatcher } from './matcher'
23
26
import { createRouterError , ErrorTypes , NavigationError } from './errors'
@@ -420,9 +423,12 @@ export function createRouter({
420
423
// TODO: this doesn't work on first load. Moving it to RouterView could allow automatically handling transitions too maybe
421
424
// TODO: refactor with a state getter
422
425
const state = isPush || ! isClient ? { } : window . history . state
423
- handleScroll ( toLocation , from , state && state . scroll ) . catch ( err =>
424
- triggerError ( err , false )
425
- )
426
+ const savedScroll = getSavedScroll ( getScrollKey ( toLocation . fullPath , 0 ) )
427
+ handleScroll (
428
+ toLocation ,
429
+ from ,
430
+ savedScroll || ( state && state . scroll )
431
+ ) . catch ( err => triggerError ( err , false ) )
426
432
427
433
// navigation is confirmed, call afterGuards
428
434
for ( const guard of afterGuards . list ( ) ) guard ( toLocation , from )
@@ -439,6 +445,8 @@ export function createRouter({
439
445
pendingLocation = toLocation
440
446
const from = currentRoute . value
441
447
448
+ saveScrollOnLeave ( getScrollKey ( from . fullPath , info . distance ) )
449
+
442
450
try {
443
451
await navigate ( toLocation , from )
444
452
finalizeNavigation (
0 commit comments