WebAgent/src/router/types.ts

8 lines
163 B
TypeScript
Raw Permalink Normal View History

2025-12-17 16:49:16 +08:00
import type { RouteLocationNormalized } from 'vue-router'
export type EnhancedRouteLocation = RouteLocationNormalized & {
meta: {
keepAlive?: boolean
}
}