Error 1101 on code surrounded by try/catch
I'm deploying a Nuxt.js application and my pages event handler is being called but somehow seems to just "stop" executing code and I get the Error 1101 message.
The reason I say stop is that I've added console.log lines between every single statement to pinpoint what is going on and the entire thing is wrapped in a try catch block but the catch is never being called.
1 Reply
This is what tailing the logs shows:
As you can see it stops on
console.log(3)
but it should show console.log(6)
if there was an exception thrown!