Annotation Interface Menu


Defines menu information for a route for automatically populated menu.

Menu is used together with Route to include it automatically in Hilla application's main menu, but only if server route is accessible and frontend/views/@layout.tsx is used with createMenuItems() function to build the menu.

Since:
24.4
See Also:
  • Element Details

    • title

      String title
      Title to use in the menu. Falls back the page title if not defined.
      Returns:
      the title of the item in the menu. Empty String by default.
      Default:
      ""
    • order

      double order
      Used to determine the order in the menu. Ties are resolved based on the used title. Entries without explicitly defined ordering are put below entries with an order. Double.MIN_VALUE is the default value and considered as undefined.
      Returns:
      the order of the item in the menu. Double.MIN_VALUE by default.
      Default:
      4.9E-324
    • icon

      String icon
      Icon to use in the menu. Value can go inside a <vaadin-icon> element's icon attribute which accepts icon group and name like 'vaadin:file'. Or it can go to a <vaadin-icon> element's src attribute which takes path to the icon. E.g. 'line-awesome/svg/lock-open-solid.svg'.
      Returns:
      A String for an icon. Empty String by default.
      Default:
      ""
    • parent

      Class<? extends Component> parent
      The menu entry to nest this entry under in a hierarchical menu, such as the one built from MenuConfiguration.getMenuEntriesTree().

      Use this when the menu hierarchy does not match the route hierarchy: by default an entry is nested under the route it logically belongs to (defined by RouteParent, or derived from the route URL), and defining a parent here overrides that for the menu only. It has no effect on navigation or on the flat MenuConfiguration.getMenuEntries().

      The parent does not have to be a direct route ancestor of the annotated route. If the given parent is not itself part of the menu, the entry is nested under the nearest ancestor of that parent which is, or becomes a root entry when there is none.

      Returns:
      the menu parent navigation target, or Component itself, the default, when the route hierarchy should be used
      Since:
      25.3
      Default:
      com.vaadin.flow.component.Component.class