#### `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){
});
````