wangxinhui
2025-09-11 34de141a574a430527a210394359c1199ccde7a3
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