npm uninstall axios npm install axios@0.21.1
pages/users/index.vue
<template> <section class="container"> <div> <!-- {{ users[0].id }}, {{ users[0].name }}、{{ users[0].address.street }} --> <ul> <li v-for="user in users" :key="user.id"> {{ user.id }}, {{ user.name }}, {{ user.address.street }} </li> </ul> </div> </section> </template> <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-wp-preserve="%3Cscript%3E%0Alet%20url%20%3D%20'https%3A%2F%2Fjsonplaceholder.typicode.com%2Fusers'%0A%0Aexport%20default%20%7B%0A%20%20async%20asyncData(%7B%20params%20%7D)%20%7B%0A%20%20%20%20let%20axios%20%3D%20await%20import('axios')%0A%20%20%20%20return%20axios.default.get(url)%0A%20%20%20%20%20%20.then((res)%20%3D%3E%20%7B%0A%20%20%20%20%20%20%20%20return%20%7B%20users%3A%20res.data%20%7D%0A%20%20%20%20%20%20%7D)%0A%20%20%7D%0A%7D%0A%3C%2Fscript%3E" data-mce-resize="false" data-mce-placeholder="1" class="mce-object" width="20" height="20" alt="<script>" title="<script>" />
http://localhost:3000/users/