wangxinhui
2025-03-01 056326f91432db1b2ede9d821d0a463682ffd2aa
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