File tree 1 file changed +15
-9
lines changed
1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,24 @@ export const hasSymbol =
8
8
9
9
export const PolySymbol = ( name : string ) =>
10
10
// vr = vue router
11
- hasSymbol ? Symbol ( name ) : `_vr_` + name
11
+ hasSymbol
12
+ ? Symbol ( __DEV__ ? '[vue-router]: ' + name : name )
13
+ : ( __DEV__ ? '[vue-router]: ' : '_vr_' ) + name
12
14
13
15
// 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 > >
17
19
// 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 >
19
23
20
24
// 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
25
27
>
28
+ // rt = route location
29
+ export const routeLocationKey = PolySymbol (
30
+ __DEV__ ? 'route location' : 'rl'
31
+ ) as InjectionKey < RouteLocationNormalizedLoaded >
You can’t perform that action at this time.
0 commit comments