3
3
*/
4
4
import { RouterView } from '../src/RouterView'
5
5
import { components , RouteLocationNormalizedLoose } from './utils'
6
- import { START_LOCATION_NORMALIZED } from '../src/types'
6
+ import {
7
+ START_LOCATION_NORMALIZED ,
8
+ RouteLocationNormalized ,
9
+ } from '../src/types'
7
10
import { markRaw } from 'vue'
8
11
import { mount , createMockedRoute } from './mount'
9
12
import { mockWarn } from 'jest-mock-warn'
@@ -21,6 +24,8 @@ function createRoutes<T extends Record<string, RouteLocationNormalizedLoose>>(
21
24
return nonReactiveRoutes
22
25
}
23
26
27
+ const props = { default : false }
28
+
24
29
const routes = createRoutes ( {
25
30
root : {
26
31
fullPath : '/' ,
@@ -31,7 +36,12 @@ const routes = createRoutes({
31
36
hash : '' ,
32
37
meta : { } ,
33
38
matched : [
34
- { components : { default : components . Home } , instances : { } , path : '/' } ,
39
+ {
40
+ components : { default : components . Home } ,
41
+ instances : { } ,
42
+ path : '/' ,
43
+ props,
44
+ } ,
35
45
] ,
36
46
} ,
37
47
foo : {
@@ -43,7 +53,12 @@ const routes = createRoutes({
43
53
hash : '' ,
44
54
meta : { } ,
45
55
matched : [
46
- { components : { default : components . Foo } , instances : { } , path : '/foo' } ,
56
+ {
57
+ components : { default : components . Foo } ,
58
+ instances : { } ,
59
+ path : '/foo' ,
60
+ props,
61
+ } ,
47
62
] ,
48
63
} ,
49
64
nested : {
@@ -55,8 +70,18 @@ const routes = createRoutes({
55
70
hash : '' ,
56
71
meta : { } ,
57
72
matched : [
58
- { components : { default : components . Nested } , instances : { } , path : '/' } ,
59
- { components : { default : components . Foo } , instances : { } , path : 'a' } ,
73
+ {
74
+ components : { default : components . Nested } ,
75
+ instances : { } ,
76
+ path : '/' ,
77
+ props,
78
+ } ,
79
+ {
80
+ components : { default : components . Foo } ,
81
+ instances : { } ,
82
+ path : 'a' ,
83
+ props,
84
+ } ,
60
85
] ,
61
86
} ,
62
87
nestedNested : {
@@ -68,9 +93,24 @@ const routes = createRoutes({
68
93
hash : '' ,
69
94
meta : { } ,
70
95
matched : [
71
- { components : { default : components . Nested } , instances : { } , path : '/' } ,
72
- { components : { default : components . Nested } , instances : { } , path : 'a' } ,
73
- { components : { default : components . Foo } , instances : { } , path : 'b' } ,
96
+ {
97
+ components : { default : components . Nested } ,
98
+ instances : { } ,
99
+ path : '/' ,
100
+ props,
101
+ } ,
102
+ {
103
+ components : { default : components . Nested } ,
104
+ instances : { } ,
105
+ path : 'a' ,
106
+ props,
107
+ } ,
108
+ {
109
+ components : { default : components . Foo } ,
110
+ instances : { } ,
111
+ path : 'b' ,
112
+ props,
113
+ } ,
74
114
] ,
75
115
} ,
76
116
named : {
@@ -82,7 +122,7 @@ const routes = createRoutes({
82
122
hash : '' ,
83
123
meta : { } ,
84
124
matched : [
85
- { components : { foo : components . Foo } , instances : { } , path : '/' } ,
125
+ { components : { foo : components . Foo } , instances : { } , path : '/' , props } ,
86
126
] ,
87
127
} ,
88
128
withParams : {
@@ -99,7 +139,7 @@ const routes = createRoutes({
99
139
100
140
instances : { } ,
101
141
path : '/users/:id' ,
102
- props : true ,
142
+ props : { default : true } ,
103
143
} ,
104
144
] ,
105
145
} ,
@@ -117,7 +157,7 @@ const routes = createRoutes({
117
157
118
158
instances : { } ,
119
159
path : '/props/:id' ,
120
- props : { id : 'foo' , other : 'fixed' } ,
160
+ props : { default : { id : 'foo' , other : 'fixed' } } ,
121
161
} ,
122
162
] ,
123
163
} ,
@@ -136,7 +176,12 @@ const routes = createRoutes({
136
176
137
177
instances : { } ,
138
178
path : '/props/:id' ,
139
- props : to => ( { id : Number ( to . params . id ) * 2 , other : to . query . q } ) ,
179
+ props : {
180
+ default : ( to : RouteLocationNormalized ) => ( {
181
+ id : Number ( to . params . id ) * 2 ,
182
+ other : to . query . q ,
183
+ } ) ,
184
+ } ,
140
185
} ,
141
186
] ,
142
187
} ,
@@ -203,6 +248,7 @@ describe('RouterView', () => {
203
248
components : { default : components . User } ,
204
249
instances : { } ,
205
250
path : '/users/:id' ,
251
+ props,
206
252
} ,
207
253
] ,
208
254
}
0 commit comments