axiosでJSON取得サンプル

ブラウザのConsoleで確認してください。

axios.get('https://jsonplaceholder.typicode.com/todos/1')
  .then(res => console.log(res.data))