Toast notifications in pure javascript
npm install toastetoast 基本都是基于Vue 或者 React 的,可是我只想要一个拿来就能用的 toast。``javasctipt
import Toast from 'toast';
const toast = new Toast();
// 轻提示
toast.info('hello world', 1500);
// 加载提示
toast.loading(content, duration);
toast.hide();
``