From 5d1212e557fc91252e912e8bdd0cef1b30436456 Mon Sep 17 00:00:00 2001 From: Sven Koschnicke Date: Fri, 1 May 2020 15:17:01 +0200 Subject: [PATCH] Add missing closing brackets --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c2a380..27b42c4 100644 --- a/README.md +++ b/README.md @@ -406,7 +406,7 @@ Vue.use(AsyncComputed, { console.log('---') console.log(stack) } -) +}) // Or with `useRawError`: Vue.use(AsyncComputed, { @@ -417,7 +417,7 @@ Vue.use(AsyncComputed, { console.log('And the stack trace was:') console.log(stack) } -) +}) ``` You can pass `false` as the `errorHandler` in order to silently ignore rejected promises.