mobx-loading
mobx-loading copied to clipboard
参考了 dva-loading 的思路,基于 mobx 实现了用于监控各个 mode 和 effect 加载状态的组件
Results
3
mobx-loading issues
Sort by
recently updated
recently updated
newest added

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