Skip to content

Commit

Permalink
docs: fix typo (vitest-dev#799)
Browse files Browse the repository at this point in the history
  • Loading branch information
IIFelix committed Sep 25, 2021
1 parent 6d147db commit ae88bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/useAsyncState/index.md
Expand Up @@ -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),
Expand Down

0 comments on commit ae88bb2

Please sign in to comment.