Formatted Header.vue Code

This commit is contained in:
nicolasimanolmedina
2025-03-22 23:52:38 +00:00
parent 0e5bdbb2c6
commit 72294f1581

View File

@@ -44,9 +44,10 @@ withDefaults(defineProps<Props>(), {
<LogoTag /> <LogoTag />
<template v-for="tag in tags" :key="tag"> <template v-for="tag in tags" :key="tag">
<NuxtLink :to="`/categories/${tag.toLocaleLowerCase()}`"> <NuxtLink :to="`/categories/${tag.toLocaleLowerCase()}`">
<span class="bg-gray-200 dark:bg-slate-900 rounded-md px-2 py-1 font-semibold hover:bg-gray-300 dark:hover:bg-slate-800 transition-colors duration-200">{{ <span
tag class="bg-gray-200 dark:bg-slate-900 rounded-md px-2 py-1 font-semibold hover:bg-gray-300 dark:hover:bg-slate-800 transition-colors duration-200"
}}</span> >{{ tag }}</span
>
</NuxtLink> </NuxtLink>
</template> </template>
</div> </div>