Files
xuetang/admin/typings/router.d.ts
T
2026-09-08 11:40:15 +08:00

16 lines
321 B
TypeScript

import 'vue-router'
declare module 'vue-router' {
// 扩展 RouteMeta
interface RouteMeta {
type?: string
perms?: string
title?: string
icon?: string
hidden?: boolean
activeMenu?: string
hideTab?: boolean
keepAlive?: boolean
}
}