Something strange is happening while I'm debugging a Vue/Nuxt app. Suddenly, the errors in the console have disappeared whenever my Javascript references a function or variable that doesn't exist. Instead of showing an error, it just fails silently. An example of this:
methods: {
foo() {
doesNotExist();
}
}
When I try to call foo(), nothing happens, whether I'm using Firefox or Chrome. Previously, I would see an error message in the console.
I am not sure if this issue is related to Vue, Nuxt, or just plain old Javascript.
What could I have done to cause this unexpected behavior?