Skip to content

Commit 0ec4862

Browse files
kedrzuposva
authored andcommitted
fix: handle undefined path in router resolve
1 parent b298d56 commit 0ec4862

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

packages/router/__tests__/router.spec.ts

+11
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,17 @@ describe('Router', () => {
319319
await router.push({ name: 'optional', params: {} })
320320
})
321321

322+
it('handles undefined path', async () => {
323+
const { router } = await newRouter()
324+
325+
const route1 = router.resolve({
326+
path: undefined,
327+
params: { p: 'a' },
328+
})
329+
expect(route1.path).toBe('/')
330+
expect(route1.params).toEqual({ p: 'a' })
331+
})
332+
322333
it('removes null/undefined optional params when current location has it', async () => {
323334
const { router } = await newRouter()
324335

packages/router/src/matcher/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ export function createRouterMatcher(
290290
)
291291
// throws if cannot be stringified
292292
path = matcher.stringify(params)
293-
} else if ('path' in location) {
293+
} else if ('path' in location && location.path != null) {
294294
// no need to resolve the path with the matcher as it was provided
295295
// this also allows the user to control the encoding
296296
path = location.path

packages/router/src/router.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ export function createRouter(options: RouterOptions): Router {
463463
let matcherLocation: MatcherLocationRaw
464464

465465
// path could be relative in object as well
466-
if ('path' in rawLocation) {
466+
if ('path' in rawLocation && rawLocation.path != null) {
467467
if (
468468
__DEV__ &&
469469
'params' in rawLocation &&

0 commit comments

Comments
 (0)