-
-
Notifications
You must be signed in to change notification settings - Fork 1k
feat(nuxt): make useFetch
options reactive
#8374
Conversation
Β Open in CodeSandbox Web Editor | VS Code | VS Code Insiders |
β Deploy Preview for nuxt3-docs ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Hi Daniel. I don't know where to respond, so I'm posting my question here. I'm having issues getting this to work. I have the following code in my page:
When trying to extract this logic to a custom composable for better error handling and adding a bearer token, it stopped working. Here is my custom composable:
Could you please take a look on why this is not working? |
yes, this is probably not the right place. if you have a follow-up question, would you open a discussion instead? you should instead do something like this: const { pending, data } = await useAsyncData(
'test',
'/api/productlist',
{
params: {
page,
includeUser: true
}
}
) ... and that should work, automatically watching |
awesome! |
Waited a long time. |
Thanks bro |
π Linked issue
resolves nuxt/nuxt#14342
β Type of change
π Description
This allows passing refs/computed properties as fetch options (e.g. for a param value), and automatically refetching when these values change.
π Checklist