選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

10 行
139 B

  1. function toast(title, duration = 1500) {
  2. uni.showToast({
  3. title: title,
  4. icon: 'none',
  5. duration: duration
  6. })
  7. }
  8. export default toast