edu/admin/typings/router.d.ts

14 lines
277 B
TypeScript
Raw Normal View History

2022-08-12 10:44:09 +00:00
import 'vue-router'
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
}
}