# UGAlert 提示

> 适配器：Vue；状态：available；slug：`alert`。

强调型提示横幅，适合信息提醒、警告与错误反馈。

## 适用场景

- 页面内持续可见的信息、成功、警告或错误提示。

## 不适用场景

- 短暂全局反馈使用 Toast。

## 公开入口

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

```vue
import { UGAlert } from '@ug666/ui-vue/components'
```

## 使用规则

- 具体 Props、事件、插槽和默认值必须读取当前包类型与组件文档，不得猜测。
- 双向值优先使用组件声明的 v-model 参数。
- 事件、插槽和 expose 以 Vue 类型为准，不照搬 React 回调名。
- 只通过公开 Props、事件、插槽、class/className 和语义 Token 扩展。

## 相关候选

- [toast](https://ui.ug666.top/ai/vue/components/toast.md)
- [empty-state](https://ui.ug666.top/ai/vue/components/empty-state.md)

## 生成前检查

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