2022-08-12 10:44:09 +00:00
|
|
|
import 'vue-router'
|
|
|
|
|
declare module 'vue-router' {
|
|
|
|
|
// 扩展 RouteMeta
|
|
|
|
|
interface RouteMeta {
|
2022-08-30 11:08:17 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|