Files
geo/apps/admin-web/src/router/meta.d.ts
T

17 lines
291 B
TypeScript
Raw Normal View History

import 'vue-router'
declare module 'vue-router' {
interface RouteMeta {
title?: string
description?: string
titleKey?: string
descriptionKey?: string
requiresAuth?: boolean
requiresKol?: boolean
2026-05-20 15:37:25 +08:00
onboarding?: boolean
navKey?: string | null
}
}
export {}