In my repository.js i have the following:
async getAllContactRequests() {
    return new Promise(() => {
      axios
        .get("http://127.0.0.1:8000/api/contactRequests", {
          headers: { "Authorization": "Bearer " + sessionStorage.getItem("user_token") }
        })
    })
  }
In my Vue component i have:
<script>
import repository from "@/api/repository";
export default {
  name: "posts-index",
  data() {
    return {
      apiData: null,
    };
  },
  async mounted() {
    console.log("This prints");
    this.apiData  = await repository.getAllContactRequests().then(result => result.data);
    console.log("This doesn't print");
  },
};
</script>
I don't get the data from the promise, and every line after the call to the api function does not execute. What am i doing wrong?
 
    