1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| import { LocationQuery, type RouteMeta as VRouteMeta } from 'vue-router';
| declare module 'vue-router' {
| interface RouteMeta extends VRouteMeta {
| link?: string;
| title?: string;
| affix?: boolean;
| noCache?: boolean;
| activeMenu?: string;
| icon?: string;
| breadcrumb?: boolean;
| }
|
| interface _RouteRecordBase {
| hidden?: boolean | string | number;
| permissions?: string[];
| roles?: string[];
| alwaysShow?: boolean;
| query?: string;
| }
|
| interface _RouteLocationBase {
| children?: _RouteRecordBase[];
| path?: string;
| }
|
| interface TagView {
| fullPath?: string;
| name?: string;
| path?: string;
| title?: string;
| meta?: RouteMeta;
| query?: LocationQuery;
| }
| }
|
|