Skip to content

Commit fab88ee

Browse files
authored
feat: explicit injection symbols in dev mode (#228)
1 parent 6c6c23d commit fab88ee

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

src/injectionSymbols.ts

+15-9
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,24 @@ export const hasSymbol =
88

99
export const PolySymbol = (name: string) =>
1010
// vr = vue router
11-
hasSymbol ? Symbol(name) : `_vr_` + name
11+
hasSymbol
12+
? Symbol(__DEV__ ? '[vue-router]: ' + name : name)
13+
: (__DEV__ ? '[vue-router]: ' : '_vr_') + name
1214

1315
// rvlm = Router View Location Matched
14-
export const matchedRouteKey = PolySymbol('rvlm') as InjectionKey<
15-
ComputedRef<RouteRecordNormalized | undefined>
16-
>
16+
export const matchedRouteKey = PolySymbol(
17+
__DEV__ ? 'router view location matched' : 'rvlm'
18+
) as InjectionKey<ComputedRef<RouteRecordNormalized | undefined>>
1719
// rvd = Router View Depth
18-
export const viewDepthKey = PolySymbol('rvd') as InjectionKey<number>
20+
export const viewDepthKey = PolySymbol(
21+
__DEV__ ? 'router view depth' : 'rvd'
22+
) as InjectionKey<number>
1923

2024
// r = router
21-
export const routerKey = PolySymbol('r') as InjectionKey<Router>
22-
// rt = route location
23-
export const routeLocationKey = PolySymbol('rl') as InjectionKey<
24-
RouteLocationNormalizedLoaded
25+
export const routerKey = PolySymbol(__DEV__ ? 'router' : 'r') as InjectionKey<
26+
Router
2527
>
28+
// rt = route location
29+
export const routeLocationKey = PolySymbol(
30+
__DEV__ ? 'route location' : 'rl'
31+
) as InjectionKey<RouteLocationNormalizedLoaded>

0 commit comments

Comments
 (0)