liveh5-nuxt/app/types/vue-router.d.ts

13 lines
193 B
TypeScript
Raw Permalink Normal View History

2025-01-08 05:26:12 +00:00
declare module 'vue-router' {
interface RouteMeta {
/** page title */
title?: string
/** i18n key */
i18n?: string
/** sub title */
subTitle?: string
2025-01-08 05:26:12 +00:00
}
}
export {}