[Vuejs]-Issue with Api call, not returning any response in Vuejs?

0👍

Don’t you want to fetch a product by its ID?
Then it rather would be:

export const routerid = async (itemId) =>
  await axios.get("https://fakestoreapi.com/products/" + itemId);

https://codesandbox.io/s/silly-nightingale-ixz8tr

Leave a comment