File tree 2 files changed +22
-5
lines changed
2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,18 @@ import { RouteRecordMatcher } from './matcher/pathMatcher'
15
15
import { PathParser } from './matcher/pathParserRanker'
16
16
import { Router } from './router'
17
17
import { RouteLocationNormalized } from './types'
18
+ import { assign , omit } from './utils'
18
19
19
20
function formatRouteLocation (
20
21
routeLocation : RouteLocationNormalized ,
21
22
tooltip ?: string
22
23
) {
23
- const copy = {
24
- ...routeLocation ,
24
+ const copy = assign ( { } , routeLocation , {
25
25
// remove variables that can contain vue instances
26
- matched : routeLocation . matched . map (
27
- ( { instances, children, aliasOf, ... rest } ) => rest
26
+ matched : routeLocation . matched . map ( matched =>
27
+ omit ( matched , [ ' instances' , ' children' , ' aliasOf' ] )
28
28
) ,
29
- }
29
+ } )
30
30
31
31
return {
32
32
_custom : {
Original file line number Diff line number Diff line change @@ -24,3 +24,20 @@ export function applyToParams(
24
24
}
25
25
26
26
export let noop = ( ) => { }
27
+
28
+ export const omit = < T extends Record < string , any > > (
29
+ object : T ,
30
+ paths : Array < keyof T >
31
+ ) => {
32
+ const result : Record < string , any > = { }
33
+ for ( let key in object ) {
34
+ if (
35
+ paths . indexOf ( key ) >= 0 ||
36
+ ! Object . prototype . hasOwnProperty . call ( object , key )
37
+ ) {
38
+ continue
39
+ }
40
+ result [ key ] = object [ key ]
41
+ }
42
+ return result
43
+ }
You can’t perform that action at this time.
0 commit comments