Files
home/Projects/kompose/docs/app/components/TemplateMenu.vue

32 lines
968 B
Vue
Raw Normal View History

2025-10-09 00:30:31 +02:00
<template>
2025-10-09 21:39:57 +02:00
<UDropdownMenu v-slot="{ open }" :modal="false" :items="[{
label: 'Blog',
to: 'https://pivoine.art'
}, {
label: 'Code',
to: 'https://code.pivoine.art'
}, {
label: 'Docs',
to: 'https://docs.pivoine.art/',
2025-10-09 23:13:59 +02:00
color: 'primary',
type: 'link',
2025-10-09 21:39:57 +02:00
children: [
{
label: 'Kompose',
to: 'https://docs.pivoine.art/kompose',
2025-10-09 23:13:59 +02:00
color: 'secondary',
2025-10-09 21:39:57 +02:00
checked: true,
type: 'checkbox'
}
2025-10-09 23:13:59 +02:00
],
2025-10-09 21:39:57 +02:00
}, {
label: 'Sexy',
to: 'https://sexy.pivoine.art'
}]" :content="{ align: 'start' }" :ui="{ content: 'min-w-fit' }" size="xs">
<UButton label="Docs" variant="subtle" trailing-icon="i-lucide-chevron-down" size="xs"
class="-mb-[6px] font-semibold rounded-full truncate" :class="[open && 'bg-primary/15']" :ui="{
2025-10-09 00:30:31 +02:00
trailingIcon: ['transition-transform duration-200', open ? 'rotate-180' : undefined].filter(Boolean).join(' ')
2025-10-09 21:39:57 +02:00
}" />
2025-10-09 00:30:31 +02:00
</UDropdownMenu>
</template>