naive-ui/demo/documentation/components/alert/zhCN/index.md
2020-02-07 23:40:07 +08:00

31 lines
675 B
Markdown

# 警示信息 Alert
根据我的经验,这东西使用最频繁的场景是让你关掉 AdBlocks。
## 演示
```demo
basic
closable
icon
no-icon
```
## Props
|名称|类型|默认值|说明|
|-|-|-|-|
|title|`string`|`null`||
|show-icon|`string`|`true`||
|type|`'default' \| 'info' \| 'success' \| 'warning' \| 'error'`|`'default'`||
|closable|`boolean`|`false`||
|on-close|`(next: function) => any`|`next => next()`|点击关闭的回调,调用 next 才能让 Alert 关闭|
|on-after-hide|`function`|`null`||
## Slots
|名称|参数|说明|
|-|-|-|
|header|`()`||
|default|`()`||
|icon|`()`||
## Events
|名称|参数|说明|
|-|-|-|
|close|`()`||
|after-hide|`()`||