feat(Toast): change default duration to 2s (#2227)

This commit is contained in:
neverland 2019-10-31 11:38:47 +08:00 committed by GitHub
parent b1e6c903e1
commit 6db1a9656d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ const timer = setInterval(() => {
| forbidClick | 是否禁止背景点击 | *boolean* | `false` | - |
| loadingType | 加载图标类型, 可选值为 `spinner` | *string* | `circular` | - |
| zIndex | z-index 层级 | *number* | `1000` | - |
| duration | 展示时长(ms),值为 0 时toast 不会消失 | *number* | `3000` | - |
| duration | 展示时长(ms),值为 0 时toast 不会消失 | *number* | `2000` | - |
| selector | 自定义选择器 | *string* | `van-toast` | - |
| context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | *object* | 当前页面 | - |
| onClose | 关闭时的回调函数 | *Function* | - | - |

View File

@ -23,7 +23,7 @@ const defaultOptions = {
message: '',
show: true,
zIndex: 1000,
duration: 3000,
duration: 2000,
position: 'middle',
forbidClick: false,
loadingType: 'circular',