mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-25 23:22:02 +00:00
chore(docs): improvements regarding asyncData example
This commit is contained in:
parent
8513654e6c
commit
cf3f564635
@ -13,7 +13,7 @@ asyncData(key: string, fn: () => Object, options?: { defer: boolean, server: boo
|
||||
```
|
||||
|
||||
* **key**: a unique key to ensure that data fetching can be properly de-duplicated across requests
|
||||
* **fn** an asynchronous function that must return an object.
|
||||
* **fn** an asynchronous function that **must return an object**.
|
||||
* **options**:
|
||||
- _defer_: whether to load the route before resolving the async function (defaults to `false`)
|
||||
- _server_: whether the fetch the data on server-side (defaults to `true`)
|
||||
@ -26,6 +26,18 @@ This helper only works with:
|
||||
|
||||
### Example
|
||||
|
||||
```vue
|
||||
<script setup nuxt>
|
||||
const { data } = asyncData('time', () => $fetch('/api/count'))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Page visits: {{ data.count }}
|
||||
</template>
|
||||
```
|
||||
|
||||
If you don't want to use the `<script setup>` syntax, you need to use the `defineNuxtComponent` method to define your component:
|
||||
|
||||
```vue
|
||||
<template>
|
||||
Page visits: {{ data.count }}
|
||||
@ -41,15 +53,4 @@ export default defineNuxtComponent({
|
||||
</script>
|
||||
```
|
||||
|
||||
When using with the `<script setup>` syntax, an addition attribute `nuxt` is required
|
||||
|
||||
```vue
|
||||
<script setup nuxt>
|
||||
const { data } = asyncData('time', () => $fetch('/api/count'))
|
||||
</script>
|
||||
|
||||
<template>
|
||||
Page visits: {{ data.count }}
|
||||
</template>
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user