UNPKG
bs-common-ui
Version:
latest (2.1.1)
2.1.1
2.1.0
2.0.1
2.0.0
1.0.2
1.0.1
bs公共组件库
bs-common-ui
/
libs
/
function
/
toast.js
10 lines
(8 loc)
•
147 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
toast
(
title, duration =
1500
)
{ uni.
showToast
({
title
: title,
icon
:
'none'
,
duration
: duration }) } export
default
toast