9 lines
99 B

const toast = (msg) => {
uni.showToast({
title: msg,
icon: 'none'
})
}
export default toast