A bugsnag-js plugin for Vue.js.
This package enables you to integrate Bugsnag's error reporting with a Vue.js application at a detailed level. It creates and configures a Vue ErrorHandler
which will capture and report unhandled errors in your app.
Reported errors will contain useful debugging info from Vue's internals, such as the component name, props and any other context that Vue can provide.
npm i --save bugsnag-js @bugsnag/plugin-vue
# or
yarn add bugsnag-js @bugsnag/plugin-vue
const Vue = require('vue')
const Bugsnag = require('@bugsnag/js')
const bugsnagVue = require('@bugsnag/plugin-vue')
Bugsnag.start('API_KEY')
Bugsnag.use(bugsnagVue, Vue)
- Check out the documentation
- Search open and closed issues for similar problems
- Report a bug or request a feature
The Bugsnag JS library and official plugins are free software released under the MIT License. See LICENSE.txt for details.