25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

10 satır
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