fenghe-auction/app/types/vue-router.d.ts

13 lines
193 B
TypeScript
Raw Normal View History

2025-04-10 07:47:40 +00:00
declare module 'vue-router' {
interface RouteMeta {
/** page title */
title?: string
/** i18n key */
i18n?: string
/** sub title */
subTitle?: string
}
}
export {}