dropdown-item.d.ts 464 B

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