Skip to content

FTxBtnDropdown

A wrapper around Quasar's QBtnDropdown with scroll hide functionality.

Props

All standard Quasar QBtnDropdown props are supported.

Events

  • show - Emitted when dropdown opens
  • hide - Emitted when dropdown closes

Usage

vue
<template>
  <FTxBtnDropdown label="Actions">
    <q-list>
      <q-item clickable>
        <q-item-section>Action 1</q-item-section>
      </q-item>
    </q-list>
  </FTxBtnDropdown>
</template>

<script setup>
import { FTxBtnDropdown } from '@ftx/ui';
</script>

Released under the MIT License.