elk/components/nav/button/MoreMenu.vue
Clovis 7a52a6122a
fix: more menu is not opening on click (#3090)
Co-authored-by: Clovis <clovis@synapse-medicine.com>
2024-12-16 15:43:09 +00:00

19 lines
570 B
Vue

<script setup lang="ts">
const model = defineModel<boolean>()
</script>
<template>
<NavBottomMoreMenu
v-slot="{ toggleVisible, show }" v-model="model!" 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' : ''"
:aria-label="$t('nav.more_menu')"
@click="toggleVisible"
>
<span :class="show ? 'i-ri:close-fill' : 'i-ri:more-fill'" />
</button>
</NavBottomMoreMenu>
</template>