multiStoreAdmin/typings/router.d.ts

15 lines
305 B
TypeScript
Raw Permalink Normal View History

2024-06-01 09:08:19 +08:00
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
}
}