[Vuejs]-No retrieving data when fetching data with Vuejs using laravel with relationship

0👍

You have a type when you are setting this.columns.

Update this.colums = response.data; in:

methods: {
  getData(){
  axios.get('/api/customerRequest').then(response => {
    this.columns = response.data;
  });
}

Leave a comment