mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-04-29 12:58:39 +00:00
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
export type contextMenuSchema = {
|
|
disabled?: boolean
|
|
divided?: boolean
|
|
icon?: string
|
|
label: string
|
|
command?: (item: contextMenuSchema) => void
|
|
}
|