mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
89 lines
2.3 KiB
Vue
89 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
const items = [
|
|
{
|
|
label: 'Docs',
|
|
icon: 'i-lucide-book-open',
|
|
slot: 'docs',
|
|
children: [
|
|
{
|
|
label: 'Icons',
|
|
description: 'You have nothing to do, @nuxt/icon will handle it automatically.'
|
|
},
|
|
{
|
|
label: 'Colors',
|
|
description: 'Choose a primary and a neutral color from your Tailwind CSS theme.'
|
|
},
|
|
{
|
|
label: 'Theme',
|
|
description: 'You can customize components by using the `class` / `ui` props or in your app.config.ts.'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
label: 'Components',
|
|
icon: 'i-lucide-box',
|
|
slot: 'components',
|
|
children: [
|
|
{
|
|
label: 'Link',
|
|
description: 'Use NuxtLink with superpowers.'
|
|
},
|
|
{
|
|
label: 'Modal',
|
|
description: 'Display a modal within your application.'
|
|
},
|
|
{
|
|
label: 'NavigationMenu',
|
|
description: 'Display a list of links.'
|
|
},
|
|
{
|
|
label: 'Pagination',
|
|
description: 'Display a list of pages.'
|
|
},
|
|
{
|
|
label: 'Popover',
|
|
description: 'Display a non-modal dialog that floats around a trigger element.'
|
|
},
|
|
{
|
|
label: 'Progress',
|
|
description: 'Show a horizontal bar to indicate task progression.'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
label: 'GitHub'
|
|
}
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<UNavigationMenu
|
|
:items="items"
|
|
class="justify-center"
|
|
:ui="{
|
|
viewport: 'sm:w-[var(--reka-navigation-menu-viewport-width)]',
|
|
childList: 'sm:w-96',
|
|
childLinkDescription: 'text-balance line-clamp-2'
|
|
}"
|
|
>
|
|
<template #docs-content="{ item }">
|
|
<ul class="grid gap-2 p-4 lg:w-[500px] lg:grid-cols-[minmax(0,.75fr)_minmax(0,1fr)]">
|
|
<li class="row-span-3">
|
|
<Placeholder class="size-full min-h-48" />
|
|
</li>
|
|
|
|
<li v-for="child in item.children" :key="child.label">
|
|
<ULink class="text-sm text-left rounded-md p-3 transition-colors hover:bg-[var(--ui-bg-elevated)]/50">
|
|
<p class="font-medium text-[var(--ui-text-highlighted)]">
|
|
{{ child.label }}
|
|
</p>
|
|
<p class="text-[var(--ui-text-muted)] line-clamp-2">
|
|
{{ child.description }}
|
|
</p>
|
|
</ULink>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
</UNavigationMenu>
|
|
</template>
|