Skip to content

Commit 24d3d49

Browse files
committed
fix(router): allow multiple router instance
1 parent 5e0490f commit 24d3d49

File tree

2 files changed

+19
-184
lines changed

2 files changed

+19
-184
lines changed

src/install.ts

+5-6
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ declare module '@vue/runtime-core' {
6363
}
6464
}
6565

66-
// used for the initial navigation client side to avoid pushing multiple times
67-
// when the router is used in multiple apps
68-
let installed: boolean | undefined
69-
7066
export function applyRouterPlugin(app: App, router: Router) {
7167
app.component('RouterLink', RouterLink)
7268
app.component('RouterView', RouterView)
@@ -82,10 +78,13 @@ export function applyRouterPlugin(app: App, router: Router) {
8278
// lead to problems
8379
if (
8480
isBrowser &&
85-
!installed &&
81+
// @ts-ignore: used for the initial navigation client side to avoid pushing
82+
// multiple times when the router is used in multiple apps
83+
!router._started &&
8684
router.currentRoute.value === START_LOCATION_NORMALIZED
8785
) {
88-
installed = true
86+
// @ts-ignore: see above
87+
router._started = true
8988
router.push(router.history.location.fullPath).catch(err => {
9089
if (__DEV__)
9190
console.error('Unhandled error when starting the router', err)

0 commit comments

Comments
 (0)