Files
pages/docs/components/overflow-menu.md
2023-10-12 08:33:50 -07:00

726 B

<script setup> const options = [ { 'id': 'like', 'color': 'primary', 'action': () => {} }, { 'id': 'report', 'action': () => {} }, { 'id': 'delete', 'color': 'danger', 'action': () => {} } ] </script>

Popout Menu

More options... Like Report Delete
<PopoutMenu class="btn" position="bottom" direction="right">
Bottom going right
<template #menu>
  Menu contents!
</template>
</PopoutMenu>