Logo white

王明 / DeYangHighTechApp

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • DeYangHighTechApp
  • uview-ui
  • libs
  • function
  • toast_1.js
  • 1
    9b1c150c
    “wangming” authored
    2024-12-02 14:30:42 +0800  
    Browse Code »
toast_1.js 139 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
function toast(title, duration = 1500) {
	uni.showToast({
		title: title,
		icon: 'none',
		duration: duration
	})
}

export default toast