We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bb3ffd commit f911c5eCopy full SHA for f911c5e
resources/js/components/NavMain.vue
@@ -15,7 +15,10 @@ const page = usePage<SharedData>();
15
<SidebarGroupLabel>Platform</SidebarGroupLabel>
16
<SidebarMenu>
17
<SidebarMenuItem v-for="item in items" :key="item.title">
18
- <SidebarMenuButton as-child :is-active="item.href === page.url">
+ <SidebarMenuButton
19
+ as-child :is-active="item.href === page.url"
20
+ :tooltip="item.title"
21
+ >
22
<Link :href="item.href">
23
<component :is="item.icon" />
24
<span>{{ item.title }}</span>
0 commit comments