import { MUtils } from '@yl/super-jssdk';
MUtils.toast(optional)
| 参数 | 类型 | 必填 | 作用 |
|---|---|---|---|
| optional | Object | 是 | 必选参数 |
optional
| 参数 | 类型 | 必填 | 作用 |
|---|---|---|---|
| txt | string | 是 | 提示文本 |
| 参数 | 类型 | 作用 |
|---|---|---|
| resolve | Function | 成功回调 |
| reject | Function | 失败回调 |
MUtils.toast({
txt: 'sdk 666'
}).then(res => {
console.log('res', res);
}).catch(err => {
console.log('err', err);
})