File tree 3 files changed +48
-2
lines changed
3 files changed +48
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export {
20
20
} from './matcher/pathParserRanker'
21
21
22
22
export {
23
+ RouteMeta ,
23
24
_RouteLocationBase ,
24
25
_RouteRecordBase ,
25
26
RouteLocationRaw ,
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ export interface _RouteLocationBase {
121
121
/**
122
122
* Merged `meta` properties from all of the matched route records.
123
123
*/
124
- meta : Record < string | number | symbol , any >
124
+ meta : RouteMeta
125
125
}
126
126
127
127
// matched contains resolved components
@@ -216,9 +216,11 @@ export interface _RouteRecordBase extends PathParserOptions {
216
216
/**
217
217
* Arbitrary data attached to the record.
218
218
*/
219
- meta ?: Record < string | number | symbol , any >
219
+ meta ?: RouteMeta
220
220
}
221
221
222
+ export interface RouteMeta extends Record < string | number | symbol , any > { }
223
+
222
224
export type RouteRecordRedirectOption =
223
225
| RouteLocationRaw
224
226
| ( ( to : RouteLocation ) => RouteLocationRaw )
Original file line number Diff line number Diff line change
1
+ import { createRouter , createWebHistory , expectType } from './index'
2
+ import { createApp , defineComponent } from 'vue'
3
+
4
+ const component = defineComponent ( { } )
5
+
6
+ declare module './index' {
7
+ interface RouteMeta {
8
+ requiresAuth ?: boolean
9
+ nested : { foo : string }
10
+ }
11
+ }
12
+
13
+ const router = createRouter ( {
14
+ history : createWebHistory ( ) ,
15
+ routes : [
16
+ {
17
+ path : '/' ,
18
+ component,
19
+ meta : {
20
+ requiresAuth : true ,
21
+ lol : true ,
22
+ nested : {
23
+ foo : 'bar' ,
24
+ } ,
25
+ } ,
26
+ } ,
27
+ {
28
+ path : '/foo' ,
29
+ // @ts -ignore
30
+ component,
31
+ // @ts -expect-error
32
+ meta : { } ,
33
+ } ,
34
+ ] ,
35
+ } )
36
+
37
+ router . beforeEach ( to => {
38
+ expectType < { requiresAuth ?: Boolean ; nested : { foo : string } } > ( to . meta )
39
+ if ( to . meta . nested . foo == 'foo' || to . meta . lol ) return false
40
+ } )
41
+
42
+ const app = createApp ( { } )
43
+ app . use ( router )
You can’t perform that action at this time.
0 commit comments