vuency
vuency copied to clipboard
Concurrency management for Vuejs.
I've encountered a bug. My code: ``` ... remove: t(function*() { try { yield fetch('http://domain.not.exists') } catch (e) { this.handleError(e) } }).flow('drop'), ... {{remove.isActive}} ``` Every time `fetch('http://domain.not.exists') ` throws...
e.g. if there is a typo and a function is undefined
Right now you have to do `task.run()` but since functions are objects anyway, it'd be nicer to just do `task()` to start task instance