Files
x_admin/admin/typings/router.d.ts
xiangheng 8eb583397d init
2023-11-24 16:46:30 +08:00

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
}
}