Toast 提示框
优质
小牛编辑
125浏览
2023-12-01
定义
toast提示组件。
图片展示
代码演示
import Dialog from 'pile/dist/components/dialog'
const {Toast} = Dialog
<Toast
content='3秒后消失'
toastShow={true}
type='success' // 类型:失败:fail,成功:success,错误:warning,loading : loading
time={3000}
callback ={function(){console.log("状态更改时的触发")}}
/>
属性
参数 | 描述 | 数据类型 | 默认值 |
---|---|---|---|
content | 主体内容 | string | |
toastShow | 展示:展示:true ,隐藏:false | bool | false |
type | 类型:失败:fail,成功:success,错误:warning,loading : loading | string | warning |
time | 展示时长 | number | 3000 |
callback | 状态更改时的回调函数 | function |