UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

16 lines (15 loc) 494 B
/** * Model describing a menu item. See <a href="/navigation/menu">NeonMenu</a>. */ export interface NeonMenuItem { /** Unique identifier for this menu item. */ key: string; /** Display label for this menu item. */ label: string; /** URL of a link to open when the menu item is triggered. */ href?: string; /** Name of an icon to display before the label. */ icon?: string; /** Boolean indicating if the menu item is disabled. */ disabled?: boolean; }