mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-10 01:08:21 +08:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import 'vue-router'
|
|
declare module 'vue-router' {
|
|
// 扩展 RouteMeta
|
|
interface RouteMeta {
|
|
title?: string
|
|
icon?: string
|
|
hidden?: boolean
|
|
activeMenu?: string
|
|
hideTab?: boolean
|
|
}
|
|
}
|