elk/components/nav/button/Search.vue
2025-01-04 16:43:02 +09:00

22 lines
605 B
Vue

<script setup lang="ts">
defineProps<{
activeClass: string
}>()
const hideLabel = useHideBottomNavigationLabel()
</script>
<template>
<NuxtLink
to="/search"
:aria-label="$t('nav.search')"
:active-class="activeClass"
flex flex-col items-center place-content-center h-full flex-1 min-w-0
class="coarse-pointer:select-none"
:class="hideLabel ? null : 'gap-1'"
@click="$scrollToTop"
>
<div aria-hidden="true" i-ri:search-line />
<span v-if="!hideLabel" text-xs overflow-hidden text-ellipsis whitespace-nowrap>{{ $t('nav.search') }}</span>
</NuxtLink>
</template>