#### `toast消息提示弹窗`
[预览](https://aui-js.github.io/aui/pages/api/plugs/toast.html) </br>
参数 | 类型 | 描述 | 默认值 | 必选
---- | ----- | ------ | ----- | ----
warp | string | 父容器元素 | 'body' | 否
msg | string | 提示内容 | '' | 是
icon | string | 图标 | '' | 否
direction | string | 横向("row")或纵向("col")控制 | 'col' | 否
location | string | (icon参数未配置时可配置)位置 </br>bottom:位于底部,从底部弹出显示</br>middle:位于页面中心位置 | 'bottom' | 否
duration | number | 显示时间 | 2000 | 否
````html
<link rel="stylesheet" type="text/css" href="https://aui-js.github.io/aui/static/css/aui.min.css"/>
<script type="text/javascript" src="https://aui-js.github.io/aui/static/js/aui.min.js"></script>
````
> 示例:
````javascript
aui.toast({
icon: "../../img/success.png",
msg: "支付成功!",
direction: "col"
},function(ret){
});
````