mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-25 15:15:19 +00:00
docs: deprecate pending and emphasis undefined (#28113)
This commit is contained in:
parent
d864ba324b
commit
0ce16ac8c9
@ -157,7 +157,7 @@ Read more about `useAsyncData`.
|
||||
|
||||
- `data`: the result of the asynchronous function that is passed in.
|
||||
- `refresh`/`execute`: a function that can be used to refresh the data returned by the `handler` function.
|
||||
- `clear`: a function that can be used to set `data` to undefined, set `error` to `null`, set `status` to `idle`, and mark any currently pending requests as cancelled.
|
||||
- `clear`: a function that can be used to set `data` to `undefined`, set `error` to `null`, set `status` to `idle`, and mark any currently pending requests as cancelled.
|
||||
- `error`: an error object if the data fetching failed.
|
||||
- `status`: a string indicating the status of the data request (`"idle"`, `"pending"`, `"success"`, `"error"`).
|
||||
|
||||
|
@ -123,6 +123,9 @@ interface _NuxtApp {
|
||||
/** @internal */
|
||||
_asyncData: Record<string, {
|
||||
data: Ref<unknown>
|
||||
/**
|
||||
* @deprecated This may be removed in a future major version.
|
||||
*/
|
||||
pending: Ref<boolean>
|
||||
error: Ref<Error | DefaultAsyncDataErrorValue>
|
||||
status: Ref<AsyncDataRequestStatus>
|
||||
|
Loading…
Reference in New Issue
Block a user