mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-17 03:14:46 +00:00
29 lines
944 B
TypeScript
29 lines
944 B
TypeScript
import { KeepAliveProps, TransitionProps, UnwrapRef } from 'vue'
|
|
import type { RouteLocationNormalizedLoaded } from 'vue-router'
|
|
|
|
export interface PageMeta {
|
|
[key: string]: any
|
|
pageTransition?: boolean | TransitionProps
|
|
layoutTransition?: boolean | TransitionProps
|
|
key?: false | string | ((route: RouteLocationNormalizedLoaded) => string)
|
|
keepalive?: boolean | KeepAliveProps
|
|
}
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta extends UnwrapRef<PageMeta> {}
|
|
}
|
|
|
|
const warnRuntimeUsage = (method: string) =>
|
|
console.warn(
|
|
`${method}() is a compiler-hint helper that is only usable inside ` +
|
|
'the script block of a single file component. Its arguments should be ' +
|
|
'compiled away and passing it at runtime has no effect.'
|
|
)
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const definePageMeta = (meta: PageMeta): void => {
|
|
if (process.dev) {
|
|
warnRuntimeUsage('definePageMeta')
|
|
}
|
|
}
|