UNPKG

@aotearoan/neon

Version:

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

9 lines (8 loc) 283 B
import type { NeonMenuItem } from './NeonMenuItem'; /** * Menu model describing a menu item with children. See <a href="/navigation/menu">NeonMenu</a>. */ export interface NeonMenuModel extends NeonMenuItem { /** A list of child menu items. */ children?: NeonMenuItem[]; }