'Get JSON data with Axios

I'm trying to fetch data from JSON but I don't quite understand how to fetch it from objects. Here is the JSON data:

enter image description here

Here is my axios code:

Vue.axios.get('url/json')
      .then((resp) => {
          this.list = resp.data;
          console.log(this.list);
      })

What I'm trying to do is I want to get the data's inside editor's choice only. How to solve this?



Sources

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

Source: Stack Overflow

Solution Source