style(Toast): adjust top position (#7044)

This commit is contained in:
neverland
2020-08-25 11:47:16 +08:00
committed by GitHub
parent 65ec6d64e7
commit 14609a3c3d
5 changed files with 79 additions and 14 deletions
+14
View File
@@ -53,6 +53,20 @@ Toast.loading({
});
```
### Custom Position
```js
Toast({
message: 'Top',
position: 'top',
});
Toast({
message: 'Bottom',
position: 'bottom',
});
```
### Update Message
```js