File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -923,7 +923,7 @@ export function createRouter(options: RouterOptions): Router {
923
923
markAsReady ( )
924
924
}
925
925
926
- let removeHistoryListener : ( ) => void
926
+ let removeHistoryListener : ( ) => void | undefined
927
927
// attach listener to history to trigger navigations
928
928
function setupListeners ( ) {
929
929
removeHistoryListener = routerHistory . listen ( ( to , _from , info ) => {
@@ -1195,8 +1195,11 @@ export function createRouter(options: RouterOptions): Router {
1195
1195
installedApps . add ( app )
1196
1196
app . unmount = function ( ) {
1197
1197
installedApps . delete ( app )
1198
+ // the router is not attached to an app anymore
1198
1199
if ( installedApps . size < 1 ) {
1199
- removeHistoryListener ( )
1200
+ // invalidate the current navigation
1201
+ pendingLocation = START_LOCATION_NORMALIZED
1202
+ removeHistoryListener && removeHistoryListener ( )
1200
1203
currentRoute . value = START_LOCATION_NORMALIZED
1201
1204
started = false
1202
1205
ready = false
You can’t perform that action at this time.
0 commit comments