Dmitriy Korobkov

Results 2 comments of Dmitriy Korobkov

Hm. I can add I'm using `default: null` option too. And my async function resolves for about 1 second. Maybe, it helps to reproduce the error.

``` computed: { isLoading() { return this.$asyncComputed.someOperation.updating; } } ... asyncComputed: { someOperation: { default: null, get() { return asyncFnReturnsZero(); } } } ``` If the `asyncFnReturnsZero` resolves in a...