From ae88bb2f629038e90b47232fe06a24fa070fe0e0 Mon Sep 17 00:00:00 2001 From: IIFelix <56734789+IIFelix@users.noreply.github.com> Date: Sun, 26 Sep 2021 00:01:56 +0200 Subject: [PATCH] docs: fix typo (#799) --- packages/core/useAsyncState/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/useAsyncState/index.md b/packages/core/useAsyncState/index.md index ea45b3ac80a7..5ce81c8cf30b 100644 --- a/packages/core/useAsyncState/index.md +++ b/packages/core/useAsyncState/index.md @@ -12,7 +12,7 @@ Reactive async state. Will not block your setup function and will trigger change import axios from 'axios' import { useAsyncState } from '@vueuse/core' -const { state, ready } = useAsyncState( +const { state, isReady } = useAsyncState( axios .get('https://jsonplaceholder.typicode.com/todos/1') .then(t => t.data),