UNPKG

405 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Toggleable menu for displaying lists of links and actions. */
4export declare class ElDropdownItem extends ElementUIComponent {
5 /** A command to be dispatched to Dropdown's command callback */
6 command: string | number | object
7
8 /** Whether the item is disabled */
9 disabled: boolean
10
11 /** Whether a divider is displayed */
12 divided: boolean
13}