Skip to content

Commit 706e84f

Browse files
authored
feat(types): allow extending meta fields (#407)
1 parent 8c6f3a7 commit 706e84f

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export {
2020
} from './matcher/pathParserRanker'
2121

2222
export {
23+
RouteMeta,
2324
_RouteLocationBase,
2425
_RouteRecordBase,
2526
RouteLocationRaw,

src/types/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export interface _RouteLocationBase {
121121
/**
122122
* Merged `meta` properties from all of the matched route records.
123123
*/
124-
meta: Record<string | number | symbol, any>
124+
meta: RouteMeta
125125
}
126126

127127
// matched contains resolved components
@@ -216,9 +216,11 @@ export interface _RouteRecordBase extends PathParserOptions {
216216
/**
217217
* Arbitrary data attached to the record.
218218
*/
219-
meta?: Record<string | number | symbol, any>
219+
meta?: RouteMeta
220220
}
221221

222+
export interface RouteMeta extends Record<string | number | symbol, any> {}
223+
222224
export type RouteRecordRedirectOption =
223225
| RouteLocationRaw
224226
| ((to: RouteLocation) => RouteLocationRaw)

test-dts/meta.test-d.ts

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { createRouter, createWebHistory, expectType } from './index'
2+
import { createApp, defineComponent } from 'vue'
3+
4+
const component = defineComponent({})
5+
6+
declare module './index' {
7+
interface RouteMeta {
8+
requiresAuth?: boolean
9+
nested: { foo: string }
10+
}
11+
}
12+
13+
const router = createRouter({
14+
history: createWebHistory(),
15+
routes: [
16+
{
17+
path: '/',
18+
component,
19+
meta: {
20+
requiresAuth: true,
21+
lol: true,
22+
nested: {
23+
foo: 'bar',
24+
},
25+
},
26+
},
27+
{
28+
path: '/foo',
29+
// @ts-ignore
30+
component,
31+
// @ts-expect-error
32+
meta: {},
33+
},
34+
],
35+
})
36+
37+
router.beforeEach(to => {
38+
expectType<{ requiresAuth?: Boolean; nested: { foo: string } }>(to.meta)
39+
if (to.meta.nested.foo == 'foo' || to.meta.lol) return false
40+
})
41+
42+
const app = createApp({})
43+
app.use(router)

0 commit comments

Comments
 (0)