2024-04-12 11:38:43 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineModel<boolean>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<NavBottomMoreMenu
|
|
|
|
v-slot="{ toggleVisible, show }" v-model="modelValue!" flex flex-row items-center
|
|
|
|
place-content-center h-full flex-1 cursor-pointer
|
|
|
|
>
|
|
|
|
<button
|
|
|
|
flex items-center place-content-center h-full flex-1 class="select-none"
|
|
|
|
:class="show ? '!text-primary' : ''"
|
2024-04-21 12:26:35 +02:00
|
|
|
:aria-label="$t('nav.more_menu')"
|
2024-04-12 11:38:43 +02:00
|
|
|
@click="toggleVisible"
|
|
|
|
>
|
|
|
|
<span :class="show ? 'i-ri:close-fill' : 'i-ri:more-fill'" />
|
|
|
|
</button>
|
|
|
|
</NavBottomMoreMenu>
|
|
|
|
</template>
|