Skip to content

Commit fd4dc06

Browse files
committed
feat(view): allow props as object in record
1 parent 6af2884 commit fd4dc06

File tree

4 files changed

+41
-5
lines changed

4 files changed

+41
-5
lines changed

__tests__/RouterView.spec.ts

+23-2
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ const routes = createRoutes({
7474
matched: [{ components: { foo: components.Foo }, path: '/' }],
7575
},
7676
withParams: {
77-
fullPath: '/users/3',
77+
fullPath: '/users/1',
7878
name: undefined,
79-
path: '/users/3',
79+
path: '/users/1',
8080
query: {},
8181
params: { id: '1' },
8282
hash: '',
@@ -89,6 +89,22 @@ const routes = createRoutes({
8989
},
9090
],
9191
},
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+
},
92108
})
93109

94110
describe('RouterView', () => {
@@ -173,4 +189,9 @@ describe('RouterView', () => {
173189
await tick()
174190
expect(el.innerHTML).toBe(`<div>User: 4</div>`)
175191
})
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+
})
176197
})

__tests__/utils.ts

+13
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,19 @@ export const components = {
9595
return h('div', {}, 'User: ' + this.id)
9696
},
9797
}),
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+
}),
98111
Nested: {
99112
render: () => {
100113
const RouterView = resolveComponent('RouterView')

src/components/View.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ export const View = defineComponent({
3737
)
3838

3939
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
4143

42-
return route.value.params
44+
return props
4345
})
4446

4547
provide(matchedRouteKey, matchedRoute)

src/types/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export interface RouteRecordCommon {
118118
path: string
119119
alias?: string | string[]
120120
name?: string
121-
props?: boolean
121+
props?: boolean | Record<string, any>
122122
// TODO: beforeEnter has no effect with redirect, move and test
123123
beforeEnter?: NavigationGuard | NavigationGuard[]
124124
meta?: Record<string | number | symbol, any>

0 commit comments

Comments
 (0)