我使用 axios 通过 API 接收数据。如果在函数中输出,那么输出的就是一个对象:
当调用该函数时,一个 Promise 对象被添加到数据变量中,其中包含我需要的对象,但我不知道如何从那里调用它。
以下是代码:
async function getData() {
try {
return await axios.get('http://localhost:8000/first')
} catch (error) {
console.error(error)
}
}
export default {
data() {
return {
data: getData()
}
}
}