多租户商城-商户小程序端
 
 
 

9 lines
139 B

function toast(title, duration = 1500) {
uni.showToast({
title: title,
icon: 'none',
duration: duration
})
}
export default toast