Please how do I redirect after an action in quasar
this.thedebiturl = 'url here;
this.$axios.get(this.thedebiturl)
.then((response) => {
this.regstatus = response.data.status
})
.catch(() => {
this.$q.notify({
color: ‘negative’,
position: ‘top’,
message: ‘failed’,
icon: ‘report_problem’
})
})