2026-04-01 00:58:42 +08:00
|
|
|
import "vue-router";
|
|
|
|
|
|
|
|
|
|
declare module "vue-router" {
|
|
|
|
|
interface RouteMeta {
|
|
|
|
|
title?: string;
|
|
|
|
|
description?: string;
|
|
|
|
|
titleKey?: string;
|
|
|
|
|
descriptionKey?: string;
|
|
|
|
|
requiresAuth?: boolean;
|
2026-04-17 13:51:39 +08:00
|
|
|
requiresKol?: boolean;
|
2026-04-02 21:16:12 +08:00
|
|
|
navKey?: string | null;
|
2026-04-01 00:58:42 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export {};
|