blob: 91afa738a9cbed99fbc13698aa1390b5de98f8ce [file] [log] [blame]
function toast(title, duration = 1500) {
uni.showToast({
title: title,
icon: 'none',
duration: duration
})
}
export default toast