Skip to content

Commit e47c84c

Browse files
posvacexbrayat
andauthored
fix(types): allow components defined via defineComponent (#421)
Co-authored-by: cexbrayat <[email protected]>
1 parent b9ab325 commit e47c84c

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

src/RouterView.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export const RouterViewImpl = defineComponent({
6262
: null
6363
}
6464

65-
// props from route configration
65+
// props from route configuration
6666
const routePropsOption = matchedRoute.props[props.name]
6767
const routeProps = routePropsOption
6868
? routePropsOption === true

src/types/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { LocationQuery, LocationQueryRaw } from '../query'
22
import { PathParserOptions } from '../matcher'
3-
import { Ref, ComputedRef, Component, ComponentPublicInstance } from 'vue'
3+
import { Ref, ComputedRef, ComponentPublicInstance, Component } from 'vue'
44
import { RouteRecord, RouteRecordNormalized } from '../matcher/types'
55
import { HistoryState } from '../history/common'
66
import { NavigationFailure } from '../errors'

test-dts/createRouter.test-d.ts

+29-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,40 @@ import {
55
NavigationGuardNext,
66
RouteLocationNormalized,
77
} from './index'
8-
import { createApp, defineComponent } from 'vue'
8+
import { createApp, defineComponent, h } from 'vue'
99

1010
const component = defineComponent({})
1111

12+
const WithProps = defineComponent({
13+
props: {
14+
id: {
15+
type: String,
16+
required: true,
17+
},
18+
},
19+
})
20+
21+
const Foo = defineComponent({
22+
props: {
23+
test: String,
24+
},
25+
setup() {
26+
return {
27+
title: 'homepage',
28+
}
29+
},
30+
render() {
31+
return h('div', `${this.title}: ${this.test}`)
32+
},
33+
})
34+
1235
const router = createRouter({
1336
history: createWebHistory(),
14-
routes: [{ path: '/', component }],
37+
routes: [
38+
{ path: '/', component },
39+
{ path: '/foo', component: Foo },
40+
{ path: '/', component: WithProps },
41+
],
1542
parseQuery: search => ({}),
1643
stringifyQuery: query => '',
1744
strict: true,

0 commit comments

Comments
 (0)