Skip to content

Commit d8fb7d0

Browse files
committed
fix(router): invalidate ongoing navigation when unmounting
1 parent 8217de6 commit d8fb7d0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/router.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ export function createRouter(options: RouterOptions): Router {
923923
markAsReady()
924924
}
925925

926-
let removeHistoryListener: () => void
926+
let removeHistoryListener: () => void | undefined
927927
// attach listener to history to trigger navigations
928928
function setupListeners() {
929929
removeHistoryListener = routerHistory.listen((to, _from, info) => {
@@ -1195,8 +1195,11 @@ export function createRouter(options: RouterOptions): Router {
11951195
installedApps.add(app)
11961196
app.unmount = function () {
11971197
installedApps.delete(app)
1198+
// the router is not attached to an app anymore
11981199
if (installedApps.size < 1) {
1199-
removeHistoryListener()
1200+
// invalidate the current navigation
1201+
pendingLocation = START_LOCATION_NORMALIZED
1202+
removeHistoryListener && removeHistoryListener()
12001203
currentRoute.value = START_LOCATION_NORMALIZED
12011204
started = false
12021205
ready = false

0 commit comments

Comments
 (0)