async fetchCatFacts() { await axios.get("//localhost:8082/api_v1/orders", {}) .then((response) => { this.catFacts = response.data.data; console.log("resp", response.data); }); Run code snippet