liuyg
2021-07-04 db9cf0e24e4d0a3953a98eb222a643eece4a6748
1
2
3
4
5
6
7
8
9
function toast(title, duration = 1500) {
    uni.showToast({
        title: title,
        icon: 'none',
        duration: duration
    })
}
 
export default toast