# UGDropdownMenu 下拉菜单

> 适配器：React；状态：available；slug：`dropdown`。

点击触发的下拉操作菜单。

## 适用场景

- 由按钮触发的一组命令或操作。

## 不适用场景

- 选择业务值使用 Select；右键操作使用 ContextMenu；导航使用 NavigationMenu。

## 公开入口

- 包入口：`@ug666/ui-react/components`
- 公开成员：`UGDropdownMenu`
- 交互文档：[https://ui.ug666.top/react/components/dropdown](https://ui.ug666.top/react/components/dropdown)

```tsx
import { UGDropdownMenu } from '@ug666/ui-react/components'
```

## 使用规则

- 具体 Props、事件、插槽和默认值必须读取当前包类型与组件文档，不得猜测。
- 受控值使用当前组件声明的 value/onValueChange 或公开回调。
- 涉及 Hook、Portal 或浏览器状态时保留 client boundary。
- 只通过公开 Props、事件、插槽、class/className 和语义 Token 扩展。

## 相关候选

- [select](https://ui.ug666.top/ai/react/components/select.md)
- [context-menu](https://ui.ug666.top/ai/react/components/context-menu.md)
- [navigation-menu](https://ui.ug666.top/ai/react/components/navigation-menu.md)
- [popover](https://ui.ug666.top/ai/react/components/popover.md)

## 生成前检查

- 当前适配器是否真实提供该组件。
- 导入路径、组件名和 API 是否存在于当前版本类型声明。
- 是否覆盖长文本、窄容器、键盘、焦点、disabled、loading 和错误状态。
