Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
Update 6.data-fetching.md
Browse files Browse the repository at this point in the history
  • Loading branch information
IsraelOrtuno committed Oct 8, 2022
1 parent 0b445a8 commit f5e6b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/1.getting-started/6.data-fetching.md
Expand Up @@ -59,7 +59,7 @@ This composable behaves identically to `useFetch` with the `lazy: true` option s
<script setup>
const { pending, data: posts } = useLazyFetch('/api/posts')
watch(posts, (newPosts) => {
// Because posts starts out null, you won't have access
// Because posts starts out null, you will not have access
// to its contents immediately, but you can watch it.
})
</script>
Expand Down

0 comments on commit f5e6b30

Please sign in to comment.