Skip to content

Commit a2f3e91

Browse files
committed
fix: spread operator compatible
1 parent 983797f commit a2f3e91

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

src/devtools.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ import { RouteRecordMatcher } from './matcher/pathMatcher'
1515
import { PathParser } from './matcher/pathParserRanker'
1616
import { Router } from './router'
1717
import { RouteLocationNormalized } from './types'
18+
import { assign, omit } from './utils'
1819

1920
function formatRouteLocation(
2021
routeLocation: RouteLocationNormalized,
2122
tooltip?: string
2223
) {
23-
const copy = {
24-
...routeLocation,
24+
const copy = assign({}, routeLocation, {
2525
// 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'])
2828
),
29-
}
29+
})
3030

3131
return {
3232
_custom: {

src/utils/index.ts

+17
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,20 @@ export function applyToParams(
2424
}
2525

2626
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+
}

0 commit comments

Comments
 (0)