TopLevelNavItem.vue 298 B

123456789101112
  1. <template>
  2. <li class="md:hidden">
  3. <NuxtLink :href="href"
  4. class="block py-1 text-sm transition text-zinc-400 hover:text-white">
  5. <slot></slot>
  6. </NuxtLink>
  7. </li>
  8. </template>
  9. <script setup>
  10. const props = defineProps(['href', 'children']);
  11. </script>