mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
docs: use sfc syntax in example (#22073)
Co-authored-by: Sébastien Chopin <seb@nuxtlabs.com>
This commit is contained in:
parent
bf7e96c7c6
commit
c76d58051f
@ -90,11 +90,9 @@ await nuxtApp.callHook('my-plugin:init')
|
||||
- **data** (object) - When you fetch the data from an API endpoint using either [`useFetch`](/docs/api/composables/use-fetch) or [`useAsyncData`](/docs/api/composables/use-async-data) , resulting payload can be accessed from the `payload.data`. This data is cached and helps you prevent fetching the same data in case an identical request is made more than once.
|
||||
|
||||
```vue [app.vue]
|
||||
export default defineComponent({
|
||||
async setup() {
|
||||
const { data } = await useAsyncData('count', () => $fetch('/api/count'))
|
||||
}
|
||||
})
|
||||
<script setup>
|
||||
const { data } = await useAsyncData('count', () => $fetch('/api/count'))
|
||||
</script>
|
||||
```
|
||||
|
||||
After fetching the value of `count` using [`useAsyncData`](/docs/api/composables/use-async-data) in the example above, if you access `payload.data`, you will see `{ count: 1 }` recorded there. The value of `count` is updated whenever the page count increases.
|
||||
|
Loading…
Reference in New Issue
Block a user