mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-09 15:52:42 +08:00
10 lines
139 B
JavaScript
10 lines
139 B
JavaScript
![]() |
function toast(title, duration = 1500) {
|
||
|
uni.showToast({
|
||
|
title: title,
|
||
|
icon: 'none',
|
||
|
duration: duration
|
||
|
})
|
||
|
}
|
||
|
|
||
|
export default toast
|