@@ -29,7 +29,6 @@ declare module 'vue-router/auto-routes' {
29
29
'/@[profileId]' : RouteRecordInfo < '/@[profileId]' , '/@:profileId' , { profileId : ParamValue < true > } , { profileId : ParamValue < false > } > ,
30
30
'/about' : RouteRecordInfo < '/about' , '/about' , Record < never , never > , Record < never , never > > ,
31
31
'/about.extra.nested' : RouteRecordInfo < '/about.extra.nested' , '/about/extra/nested' , Record < never , never > , Record < never , never > > ,
32
- '/articles' : RouteRecordInfo < '/articles' , '/articles' , Record < never , never > , Record < never , never > , '/articles/' | '/articles/[id]' | '/articles/[id]+' > ,
33
32
'/articles/' : RouteRecordInfo < '/articles/' , '/articles' , Record < never , never > , Record < never , never > > ,
34
33
'/articles/[id]' : RouteRecordInfo < '/articles/[id]' , '/articles/:id' , { id : ParamValue < true > } , { id : ParamValue < false > } > ,
35
34
'/articles/[id]+' : RouteRecordInfo < '/articles/[id]+' , '/articles/:id+' , { id : ParamValueOneOrMore < true > } , { id : ParamValueOneOrMore < false > } > ,
@@ -145,7 +144,7 @@ declare module 'vue-router/auto-routes' {
145
144
views : never
146
145
}
147
146
'src/pages/articles.vue' : {
148
- routes : '/articles' | '/articles /' | '/articles/[id]' | '/articles/[id]+'
147
+ routes : '/articles/' | '/articles/[id]' | '/articles/[id]+'
149
148
views : 'default'
150
149
}
151
150
'src/pages/articles/index.vue' : {
0 commit comments