huangxiaoqiang
2025-07-21 74d731cd8ac6bd995fbda485ee3371300af29a74
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