비동기 처리 패턴 async현재 사용할 함수를 비동기로 처리하겠다는 선언자. await는 비동기로 순차 처리하기 위해서 수행할 API에 붙이는 선언자.
비동기 처리 패턴
async
await
async testFunction() { const response = await axios.get('api/test') console.log(response) }