8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
|
|
import type { RouteLocationNormalized } from 'vue-router'
|
||
|
|
|
||
|
|
export type EnhancedRouteLocation = RouteLocationNormalized & {
|
||
|
|
meta: {
|
||
|
|
keepAlive?: boolean
|
||
|
|
}
|
||
|
|
}
|