feat: add 6 new bottom nav buttons (#3011)

This commit is contained in:
TAKAHASHI Shuuji 2024-10-21 17:48:06 +09:00 committed by GitHub
parent 78b013dc0f
commit ae1da4c3e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 87 additions and 2 deletions

View file

@ -0,0 +1,17 @@
<script setup lang="ts">
defineProps<{
activeClass: string
}>()
</script>
<template>
<NuxtLink
to="/lists"
:aria-label="$t('nav.lists')"
:active-class="activeClass"
flex flex-row items-center place-content-center h-full flex-1
class="coarse-pointer:select-none" @click="$scrollToTop"
>
<div i-ri:list-check />
</NuxtLink>
</template>