@@ -27,6 +27,14 @@ const routes: RouteRecordRaw[] = [
27
27
{ path : '/repeat/:r+' , name : 'repeat' , component : components . Bar } ,
28
28
{ path : '/to-p/:p' , redirect : to => `/p/${ to . params . p } ` } ,
29
29
{ path : '/before-leave' , component : components . BeforeLeave } ,
30
+ {
31
+ path : '/parent' ,
32
+ meta : { fromParent : 'foo' } ,
33
+ component : components . Foo ,
34
+ children : [
35
+ { path : 'child' , meta : { fromChild : 'bar' } , component : components . Foo } ,
36
+ ] ,
37
+ } ,
30
38
{
31
39
path : '/inc-query-hash' ,
32
40
redirect : to => ( {
@@ -125,6 +133,16 @@ describe('Router', () => {
125
133
expect ( stringifyQuery ) . toHaveBeenCalledWith ( { foo : 'bar' } )
126
134
} )
127
135
136
+ it ( 'merges meta properties from parent to child' , async ( ) => {
137
+ const { router } = await newRouter ( )
138
+ expect ( router . resolve ( '/parent' ) ) . toMatchObject ( {
139
+ meta : { fromParent : 'foo' } ,
140
+ } )
141
+ expect ( router . resolve ( '/parent/child' ) ) . toMatchObject ( {
142
+ meta : { fromParent : 'foo' , fromChild : 'bar' } ,
143
+ } )
144
+ } )
145
+
128
146
it ( 'can do initial navigation to /' , async ( ) => {
129
147
const router = createRouter ( {
130
148
history : createMemoryHistory ( ) ,
0 commit comments