File tree 4 files changed +41
-5
lines changed
4 files changed +41
-5
lines changed Original file line number Diff line number Diff line change @@ -74,9 +74,9 @@ const routes = createRoutes({
74
74
matched : [ { components : { foo : components . Foo } , path : '/' } ] ,
75
75
} ,
76
76
withParams : {
77
- fullPath : '/users/3 ' ,
77
+ fullPath : '/users/1 ' ,
78
78
name : undefined ,
79
- path : '/users/3 ' ,
79
+ path : '/users/1 ' ,
80
80
query : { } ,
81
81
params : { id : '1' } ,
82
82
hash : '' ,
@@ -89,6 +89,22 @@ const routes = createRoutes({
89
89
} ,
90
90
] ,
91
91
} ,
92
+ withIdAndOther : {
93
+ fullPath : '/props/1' ,
94
+ name : undefined ,
95
+ path : '/props/1' ,
96
+ query : { } ,
97
+ params : { id : '1' } ,
98
+ hash : '' ,
99
+ meta : { } ,
100
+ matched : [
101
+ {
102
+ components : { default : components . WithProps } ,
103
+ path : '/users/:id' ,
104
+ props : { id : 'foo' , other : 'fixed' } ,
105
+ } ,
106
+ ] ,
107
+ } ,
92
108
} )
93
109
94
110
describe ( 'RouterView' , ( ) => {
@@ -173,4 +189,9 @@ describe('RouterView', () => {
173
189
await tick ( )
174
190
expect ( el . innerHTML ) . toBe ( `<div>User: 4</div>` )
175
191
} )
192
+
193
+ it ( 'can pass an object as props' , async ( ) => {
194
+ const { el } = factory ( routes . withIdAndOther )
195
+ expect ( el . innerHTML ) . toBe ( `<div>id:foo;other:fixed</div>` )
196
+ } )
176
197
} )
Original file line number Diff line number Diff line change @@ -95,6 +95,19 @@ export const components = {
95
95
return h ( 'div' , { } , 'User: ' + this . id )
96
96
} ,
97
97
} ) ,
98
+ WithProps : defineComponent ( {
99
+ props : {
100
+ id : {
101
+ default : 'default' ,
102
+ } ,
103
+ other : {
104
+ default : 'other' ,
105
+ } ,
106
+ } ,
107
+ render ( ) {
108
+ return h ( 'div' , { } , `id:${ this . id } ;other:${ this . other } ` )
109
+ } ,
110
+ } ) ,
98
111
Nested : {
99
112
render : ( ) => {
100
113
const RouterView = resolveComponent ( 'RouterView' )
Original file line number Diff line number Diff line change @@ -37,9 +37,11 @@ export const View = defineComponent({
37
37
)
38
38
39
39
const propsData = computed ( ( ) => {
40
- if ( ! matchedRoute . value . props ) return { }
40
+ const { props } = matchedRoute . value
41
+ if ( ! props ) return { }
42
+ if ( props === true ) return route . value . params
41
43
42
- return route . value . params
44
+ return props
43
45
} )
44
46
45
47
provide ( matchedRouteKey , matchedRoute )
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ export interface RouteRecordCommon {
118
118
path : string
119
119
alias ?: string | string [ ]
120
120
name ?: string
121
- props ?: boolean
121
+ props ?: boolean | Record < string , any >
122
122
// TODO: beforeEnter has no effect with redirect, move and test
123
123
beforeEnter ?: NavigationGuard | NavigationGuard [ ]
124
124
meta ?: Record < string | number | symbol , any >
You can’t perform that action at this time.
0 commit comments