yyb
2026-03-05 0740148a2a3642e79460a8180cb9436d9c5cff03
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