blob: 91afa738a9cbed99fbc13698aa1390b5de98f8ce [file] [log] [blame]
guangchao.xu070005a2020-12-07 09:56:40 +08001function toast(title, duration = 1500) {
2 uni.showToast({
3 title: title,
4 icon: 'none',
5 duration: duration
6 })
7}
8
9export default toast