You have to redirect using "window.location.href" function Like
var redirectUrl = 'path of the page you want to redirect' inside this condition
if (response.status === 200) {
let data = response.data;
console.log(data); // <- How do I redirect here?
window.location.href = redirectUrl;
}