Error Tracking/Logging
Is there a way to track errors like there is in vuejs?
https://vuejs.org/guide/best-practices/production-deployment.html#tracking-runtime-errors
I understand that there is ErrorBoundary which will catch errors thrown from components, but was wondering if there was anything else.
Thanks!
Production Deployment | Vue.js
Vue.js - The Progressive JavaScript Framework
1 Reply
this could be used too
https://developer.mozilla.org/en-US/docs/Web/API/Window/error_event
Window: error event - Web APIs | MDN
The error event is fired on a Window object when a resource failed to load or couldn't be used — for example if a script has an execution error.