shuishen
2022-02-19 d25a69f40c327f8bd72a7a16d5090bc85f6952df
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