mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-06 20:43:03 +08:00
18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
import 'vue-router'
|
|
|
|
declare module 'vue-router' {
|
|
interface RouteMeta {
|
|
action?: string
|
|
subject?: string
|
|
layoutWrapperClasses?: string
|
|
navActiveLink?: RouteLocationRaw
|
|
}
|
|
}
|
|
|
|
// 支持动态导入远程模块
|
|
declare module '*' {
|
|
import { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|