shengchanzhe 09f21041d9 init
2023-07-16 19:14:41 +08:00

15 lines
319 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
}
}