'Vue js with laravel not geting api data and response

this is Vue js component please help me to get data in template. getting data from vue js api in console i got undefined. Not getting blogList Data please help to get blog list data. my api is correct and fetch data.

<template>
  <div v-for="blog in blogList">
    Hii i am {{ blog.name }} , {{ blog.mail }}
  </div>
</template>

<script>
import ApiRequest from "../../js/api-request";

export default {

  data() {
    return {
      blogList: '',
    };
  },

  created() {
    const request = new ApiRequest('/api/blog/list', (blogList) => {
      this.blogList = blogList;
      console.log(blogList);
    }, () => {
      //
    });
    request.get();
  }
};
</script>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source