mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-25 16:39:15 +08:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
import { MenuEnum } from '@/enums/editPageEnum'
|
|
|
|
export interface MenuOptionsItemType {
|
|
type?: string
|
|
label?: string
|
|
key: MenuEnum | string
|
|
icon?: Function
|
|
fnHandle?: Function
|
|
disabled?: boolean
|
|
hidden?: boolean
|
|
} |