I am using VueJS and I've been bitten several times by the fact that it swallows all errors (undefined properties in templates as well as calling undefined errors in methods).
Is there a way to turn on all errors, or at least all errors happening in JS (and not in templates)?
Vue.config.debug = true? With this Vue will print stacktrace errors/warnings.Vue.config.debugdoesn't exist in 2.0. I think you just want to NOT use the minified version and make sure you DON't setVue.config.silenttotrue.