File tree 3 files changed +13
-2
lines changed
3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -319,6 +319,17 @@ describe('Router', () => {
319
319
await router . push ( { name : 'optional' , params : { } } )
320
320
} )
321
321
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
+
322
333
it ( 'removes null/undefined optional params when current location has it' , async ( ) => {
323
334
const { router } = await newRouter ( )
324
335
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ export function createRouterMatcher(
290
290
)
291
291
// throws if cannot be stringified
292
292
path = matcher . stringify ( params )
293
- } else if ( 'path' in location ) {
293
+ } else if ( 'path' in location && location . path != null ) {
294
294
// no need to resolve the path with the matcher as it was provided
295
295
// this also allows the user to control the encoding
296
296
path = location . path
Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ export function createRouter(options: RouterOptions): Router {
463
463
let matcherLocation : MatcherLocationRaw
464
464
465
465
// path could be relative in object as well
466
- if ( 'path' in rawLocation ) {
466
+ if ( 'path' in rawLocation && rawLocation . path != null ) {
467
467
if (
468
468
__DEV__ &&
469
469
'params' in rawLocation &&
You can’t perform that action at this time.
0 commit comments