edu/admin/typings/router.d.ts

16 lines
306 B
TypeScript
Raw Normal View History

2022-08-12 10:44:09 +00:00
import 'vue-router'
2022-08-12 10:44:09 +00:00
declare module 'vue-router' {
// 扩展 RouteMeta
interface RouteMeta {
type?: string
perms?: string
2022-08-12 10:44:09 +00:00
title?: string
icon?: string
hidden?: boolean
activeMenu?: string
hideTab?: boolean
2022-09-20 02:58:38 +00:00
keepAlive?: boolean
2022-08-12 10:44:09 +00:00
}
}