Skip to content

Commit

Permalink
fix: more menu is not opening on click (#3090)
Browse files Browse the repository at this point in the history
Co-authored-by: Clovis <[email protected]>
  • Loading branch information
Cl0v1s and Clovis authored Dec 16, 2024
1 parent 4928148 commit 7a52a61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/nav/button/MoreMenu.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script setup lang="ts">
defineModel<boolean>()
const model = defineModel<boolean>()
</script>

<template>
<NavBottomMoreMenu
v-slot="{ toggleVisible, show }" v-model="modelValue!" flex flex-row items-center
v-slot="{ toggleVisible, show }" v-model="model!" flex flex-row items-center
place-content-center h-full flex-1 cursor-pointer
>
<button
Expand Down

0 comments on commit 7a52a61

Please sign in to comment.