@@ -251,10 +251,16 @@ export function createRouter(options: RouterOptions): Router {
251
251
252
252
// path could be relative in object as well
253
253
if ( 'path' in rawLocation ) {
254
- if ( __DEV__ && 'params' in rawLocation ) {
254
+ if (
255
+ __DEV__ &&
256
+ 'params' in rawLocation &&
257
+ ! ( 'name' in rawLocation ) &&
258
+ Object . keys ( ( rawLocation as any ) . params ) . length
259
+ ) {
255
260
warn (
256
- // @ts -ignore
257
- `Path "${ rawLocation . path } " was passed with params but they will be ignored. Use a named route instead or build the path yourself`
261
+ `Path "${
262
+ ( rawLocation as any ) . path
263
+ } " was passed with params but they will be ignored. Use a named route alongside params instead.`
258
264
)
259
265
}
260
266
rawLocation = {
@@ -332,8 +338,29 @@ export function createRouter(options: RouterOptions): Router {
332
338
let newTargetLocation = locationAsObject (
333
339
typeof redirect === 'function' ? redirect ( targetLocation ) : redirect
334
340
)
341
+
342
+ if (
343
+ __DEV__ &&
344
+ ! ( 'path' in newTargetLocation ) &&
345
+ ! ( 'name' in newTargetLocation )
346
+ ) {
347
+ warn (
348
+ `Invalid redirect found:\n${ JSON . stringify (
349
+ newTargetLocation ,
350
+ null ,
351
+ 2
352
+ ) } \n when navigating to "${
353
+ targetLocation . fullPath
354
+ } ". A redirect must contain a name or path.`
355
+ )
356
+ }
335
357
return pushWithRedirect (
336
358
{
359
+ // having a path here would be a problem with relative locations but
360
+ // at the same time it doesn't make sense for a redirect to be
361
+ // relative (no name, no path) because it would create an infinite
362
+ // loop. Since newTargetLocation must either have a `path` or a
363
+ // `name`, this will never happen
337
364
...targetLocation ,
338
365
...newTargetLocation ,
339
366
state : data ,
0 commit comments