# Toast #

每次调用都会往 body 上面扔一个div，说实话，这稍微有一点恐怖  

默认后一个 toast 会盖在前一个 toast 上面，可以选择把前一个清除掉以后再放下一个

或者自己限制一下 toast 的次数

```typescript
type Options {

  /**
   * 消息主体
   */
  message: string;

  /**
   * 出现位置
   */
  position?: 'top' | 'bottom';

  /**
   * 持续时间
   */
  duration?: number;

  /**
   * 自定义样式
   */
  style?: string;
}
```
