File tree 2 files changed +35
-3
lines changed
2 files changed +35
-3
lines changed Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ export interface RouteRecordSingleView extends _RouteRecordBase {
237
237
* Component to display when the URL matches this route.
238
238
*/
239
239
component : RawRouteComponent
240
+ components ?: never
240
241
/**
241
242
* Allow passing down params as props to the component rendered by `router-view`.
242
243
*/
@@ -251,6 +252,7 @@ export interface RouteRecordMultipleViews extends _RouteRecordBase {
251
252
* Components to display when the URL matches this route. Allow using named views.
252
253
*/
253
254
components : Record < string , RawRouteComponent >
255
+ component ?: never
254
256
/**
255
257
* Allow passing down params as props to the component rendered by
256
258
* `router-view`. Should be an object with the same keys as `components` or a
@@ -260,14 +262,13 @@ export interface RouteRecordMultipleViews extends _RouteRecordBase {
260
262
}
261
263
262
264
/**
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.
265
267
*/
266
268
export interface RouteRecordRedirect extends _RouteRecordBase {
267
269
redirect : RouteRecordRedirectOption
268
270
component ?: never
269
271
components ?: never
270
- children ?: never
271
272
}
272
273
273
274
export type RouteRecordRaw =
Original file line number Diff line number Diff line change
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
+ // }
You can’t perform that action at this time.
0 commit comments