mobx-loading icon indicating copy to clipboard operation
mobx-loading copied to clipboard

参考了 dva-loading 的思路,基于 mobx 实现了用于监控各个 mode 和 effect 加载状态的组件

Results 3 mobx-loading issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/4002237/65241683-bf7e4e00-db16-11e9-8bbc-baeac05131ee.png)

请问ts 是否有支持计划

虽然 catch 到异常了, 但是异常仍然被抛到了外面. Uncaught (in promise) Error: test ```js class MyStore { @loading async load() { throw new Error('test') } } (async () => { try { await new...