Files
FileCodeBoxFronted2026/src/vite-env.d.ts
T
2026-06-03 02:01:57 +08:00

17 lines
327 B
TypeScript

declare module '*.vue' {
import { ComponentOptions } from 'vue'
const componentOptions: ComponentOptions
export default componentOptions
}
declare module 'vue-router' {
interface RouteMeta {
requiresAuth?: boolean
showGlobalControls?: boolean
showRouteLoading?: boolean
title?: string
}
}
export {}