helongyang
2025-03-21 3a1a5e58e9ac1b4a8449601db8c6608897877746
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