try {
const { data } = await axios({
method: 'put',
url: '/api/article/123',
data: {
title: 'Making PUT Requests with Axios',
status: 'published'
}
});
console.log(data);
} catch (err) {
if (err.response.status === 404) {
console.log('Resource could not be found!');
} else {
console.log(err.message);
}
}