[Vuejs]-Vue js axios cannot read property 'data' of undefined

0👍

you are missing res.data object

    this.results = res.data.success.data;
    this.api.prevPageToken = res.data.success.data.prevPageToken;
    this.api.nextPageToken = res.data.success.data.nextPageToken;

Leave a comment