I have used useFetch to get data, (composables/api.ts)ts export const reportAPI = { reports: { getItems() { return useFetch( "https://reqres.in/api/products/3", {method : 'get'} ); }, }, };
(app.vue)
console.log(data);
});</script>```
In the console, I am able to print the response, but the request is not present in the network tab