Source code
Click here to see the source code for this component on GitHub. Feel free to copy it and adjust it for your own use.
Installation
npx ui-thing@latest add navigation-menu
Anatomy
<template>
<UiNavigationMenu>
<UiNavigationMenuList>
<UiNavigationMenuItem>
<UiNavigationMenuTrigger />
<UiNavigationMenuContent>
<NavigationMenuLink />
</UiNavigationMenuContent>
</UiNavigationMenuItem>
<UiNavigationMenuItem>
<NavigationMenuLink />
</UiNavigationMenuItem>
<UiNavigationMenuItem>
<UiNavigationMenuTrigger />
<UiNavigationMenuContent>
<UiNavigationMenuSub>
<UiNavigationMenuList />
</UiNavigationMenuSub>
</UiNavigationMenuContent>
</UiNavigationMenuItem>
</UiNavigationMenuList>
</UiNavigationMenu>
</template>
Usage
Horizontal Navigation Menu
The default orientation of the Navigation Menu is horizontal.
Vertical Navigation Menu
We can change the orientation of the Navigation Menu to vertical by using the orientation
prop.
To get things to look how we want, we would then need to add some custom styles.