We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8554831 commit b6b42caCopy full SHA for b6b42ca
src/core/util/error.js
@@ -35,7 +35,7 @@ export function invokeWithErrorHandling (
35
let res
36
try {
37
res = args ? handler.apply(context, args) : handler.call(context)
38
- if (isPromise(res)) {
+ if (res && !res._isVue && isPromise(res)) {
39
res.catch(e => handleError(e, vm, info + ` (Promise/async)`))
40
}
41
} catch (e) {
0 commit comments