1
yangpeixing
6 天以前 48e2278d7ac330c7f05deda6f884acb6f01206b4
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