## 基本用法
点击展示 Notification
```html
点击展示 Notification
```
## 带有 icon
成功
警告
消息
错误
```html
成功
警告
消息
错误
```
## 不会自动关闭
不会自动关闭的 Notification
```html
不会自动关闭的 Notification
```
## 回调函数
带有回调函数的 Notification
```html
带有回调函数的 Notification
```
## 全局方法
element 为 Vue.prototype 添加了全局方法 $notify。因此在 vue instance 中可以采用本页面中的方式调用 `Notification`。
## 单独引用
单独引入 `Notification`:
```javascript
import { Notification } from 'element-ui';
```
此时调用方法为 `Notification(options)`。
## API
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---------- |-------------- |---------- |-------------------------------- |-------- |
| title | 标题 | string | | |
| message | 说明文字 | string | | |
| type | 主题 | string | 'success', 'warning', 'info', 'error' | |
| duration | 显示时间, 毫秒。设为 0 则不会自动关闭 | number | | 4500 |
| onClose | 关闭时的回调函数 | function | | |