mirror of
https://github.com/likeshop-github/likeadmin_go.git
synced 2025-12-24 13:07:57 +08:00
15 lines
305 B
TypeScript
15 lines
305 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
|
|
}
|
|
}
|