[Vuejs]-How can I pass an error message from the server backend to vue frontend

0👍

Ultimately figured it out. added the following to the backend catch

 return ctx.send({errorStatus:"Too Many Requests. Please Wait"},429)

And I was able to call

Leave a comment