Skip to content

Commit df7b040

Browse files
committedMar 14, 2025
fix: set currentRouter path when use memoryHistory in client
1 parent 89001a7 commit df7b040

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎packages/plugin-vue3/src/entry/create.ts

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export function createRouter(options: VueRouterOptions & { hashRouter?: boolean;
1717
})
1818
if (__isBrowser__ && useClientMemoryHistory && window.ssrRequestPath) {
1919
routerInstance.push(window.ssrRequestPath)
20+
routerInstance.currentRoute.value.path = window.ssrRequestPath
2021
}
2122
return routerInstance
2223
}

0 commit comments

Comments
 (0)
Please sign in to comment.