石广澎
2025-06-11 3af8feb45b527662a21ce4f3bd91e7d6a2f9d54e
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