19 lines
530 B
Vue
19 lines
530 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
activeClass: string
|
|
}>()
|
|
|
|
const userSettings = useUserSettings()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink
|
|
to="/conversations"
|
|
:aria-label="$t('nav.conversations')"
|
|
:active-class="activeClass" flex flex-col items-center place-content-center h-full flex-1 class="coarse-pointer:select-none"
|
|
@click="$scrollToTop"
|
|
>
|
|
<div i-ri:at-line />
|
|
<span v-if="!getPreferences(userSettings, 'hideBottomNavLabel')" text-xs>{{ $t('nav.conversations') }}</span>
|
|
</NuxtLink>
|
|
</template>
|