Files
likeadmin_java/admin/typings/router.d.ts
damonyuan 7badc8ae0f feat 同步前端代码
feat 同步PC代码
feat 增加1.9DB
feat 同步逻辑
2024-08-29 00:24:37 +08:00

16 lines
306 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
}
}