@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
14 lines (13 loc) • 371 B
TypeScript
/**
* Model defining a <a href="/navigation/tree-menu">NeonTreeMenu</a> link.
*/
export interface NeonTreeMenuLinkModel {
/** Display label for the menu item. */
label: string;
/** Unique key for the menu item. */
key: string;
/** URL for the menu item's page. */
href?: string;
/** A list of page anchor links. */
anchors?: string[];
}