Skip to content

Commit c6460f0

Browse files
authored
fix(devtools): stabilize record id (#897)
1 parent 1626db7 commit c6460f0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/devtools.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -435,8 +435,11 @@ function formatRouteRecordForInspector(
435435

436436
// add an id to be able to select it. Using the `path` is not possible because
437437
// empty path children would collide with their parents
438-
let id = String(routeRecordId++)
439-
;(record as any).__vd_id = id
438+
let id = (record as any).__vd_id
439+
if (id == null) {
440+
id = String(routeRecordId++)
441+
;(record as any).__vd_id = id
442+
}
440443

441444
return {
442445
id,

0 commit comments

Comments
 (0)