This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/navigation/vertical-navigation/with_badges.vue
2024-01-24 19:02:44 +08:00

23 lines
1.1 KiB
Vue

<template>
<nav class="flex flex-1 flex-col" aria-label="Sidebar">
<ul role="list" class="-mx-2 space-y-1">
<li v-for="item in navigation" :key="item.name">
<a :href="item.href" :class="[item.current ? 'bg-gray-50 text-indigo-600' : 'text-gray-700 hover:text-indigo-600 hover:bg-gray-50', 'group flex gap-x-3 rounded-md p-2 pl-3 text-sm leading-6 font-semibold']">
{{ item.name }}
<span v-if="item.count" class="ml-auto w-9 min-w-max whitespace-nowrap rounded-full bg-white px-2.5 py-0.5 text-center text-xs font-medium leading-5 text-gray-600 ring-1 ring-inset ring-gray-200" aria-hidden="true">{{ item.count }}</span>
</a>
</li>
</ul>
</nav>
</template>
<script setup>
const navigation = [
{ name: 'Dashboard', href: '#', count: '5', current: true },
{ name: 'Team', href: '#', current: false },
{ name: 'Projects', href: '#', count: '12', current: false },
{ name: 'Calendar', href: '#', count: '20+', current: false },
{ name: 'Documents', href: '#', current: false },
{ name: 'Reports', href: '#', current: false },
]
</script>