15 lines
241 B
TypeScript
15 lines
241 B
TypeScript
|
|
import "vue-router";
|
||
|
|
|
||
|
|
declare module "vue-router" {
|
||
|
|
interface RouteMeta {
|
||
|
|
title?: string;
|
||
|
|
description?: string;
|
||
|
|
titleKey?: string;
|
||
|
|
descriptionKey?: string;
|
||
|
|
requiresAuth?: boolean;
|
||
|
|
navKey?: string;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export {};
|