Skip to content

Commit a77f148

Browse files
committed
fix(types): fix types for redirect records
1 parent adde4c2 commit a77f148

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

src/types/index.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ export interface RouteRecordSingleView extends _RouteRecordBase {
237237
* Component to display when the URL matches this route.
238238
*/
239239
component: RawRouteComponent
240+
components?: never
240241
/**
241242
* Allow passing down params as props to the component rendered by `router-view`.
242243
*/
@@ -251,6 +252,7 @@ export interface RouteRecordMultipleViews extends _RouteRecordBase {
251252
* Components to display when the URL matches this route. Allow using named views.
252253
*/
253254
components: Record<string, RawRouteComponent>
255+
component?: never
254256
/**
255257
* Allow passing down params as props to the component rendered by
256258
* `router-view`. Should be an object with the same keys as `components` or a
@@ -260,14 +262,13 @@ export interface RouteRecordMultipleViews extends _RouteRecordBase {
260262
}
261263

262264
/**
263-
* Route Record that defines a redirect. Cannot have `component`, `components` or
264-
* `children` as it is never rendered.
265+
* Route Record that defines a redirect. Cannot have `component` or `components`
266+
* as it is never rendered.
265267
*/
266268
export interface RouteRecordRedirect extends _RouteRecordBase {
267269
redirect: RouteRecordRedirectOption
268270
component?: never
269271
components?: never
270-
children?: never
271272
}
272273

273274
export type RouteRecordRaw =

test-dts/routeRecords.test-d.ts

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { RouteRecordRaw } from './index'
2+
import { defineComponent } from 'vue'
3+
4+
const component = defineComponent({})
5+
const components = { default: component }
6+
7+
const routes: RouteRecordRaw[] = []
8+
9+
routes.push({ path: '/', redirect: '/foo' })
10+
11+
// @ts-expect-error cannot have components and component at the same time
12+
routes.push({ path: '/', components, component })
13+
14+
routes.push({
15+
path: '/',
16+
redirect: '/foo',
17+
children: [],
18+
})
19+
20+
routes.push({ path: '/', component, props: true })
21+
routes.push({ path: '/', component, props: to => to.params.id })
22+
// @ts-expect-error: props should be an object
23+
routes.push({ path: '/', components, props: to => to.params.id })
24+
routes.push({ path: '/', components, props: { default: to => to.params.id } })
25+
routes.push({ path: '/', components, props: true })
26+
27+
// let r: RouteRecordRaw = {
28+
// path: '/',
29+
// component,
30+
// components,
31+
// }

0 commit comments

Comments
 (0)