diff --git a/docs/content/3.api/1.composables/use-fetch.md b/docs/content/3.api/1.composables/use-fetch.md index 5ee5fbb70c3..258ae0af7af 100644 --- a/docs/content/3.api/1.composables/use-fetch.md +++ b/docs/content/3.api/1.composables/use-fetch.md @@ -23,6 +23,7 @@ type UseFetchOptions = { transform?: (input: DataT) => DataT pick?: string[] watch?: WatchSource[] + initialCache?: boolean } type AsyncData = { @@ -49,6 +50,7 @@ type AsyncData = { * `default`: A factory function to set the default value of the data, before the async function resolves - particularly useful with the `lazy: true` option. * `pick`: Only pick specified keys in this array from the `handler` function result. * `watch`: watch reactive sources to auto-refresh + * `initialCache`: When set to `false`, will skip payload cache for initial fetch. (defaults to `true`) * `transform`: A function that can be used to alter `handler` function result after resolving. ::alert{type=warning}