You can start reporting errors from your Vue 2 app by configuring an
errorHandler
that uses a Notifier
initialized with your projectId
and projectKey
.
import { Notifier } from '@airbrake/browser'
var airbrake = new Notifier({
projectId: 1,
projectKey: 'FIXME'
})
Vue.config.errorHandler = function(err, _vm, info) {
airbrake.notify({
error: err,
params: {info: info}
})
}
You can start reporting errors from your Vue 3 app by configuring an
errorHandler
that uses a Notifier
initialized with your projectId
and projectKey
.
import { createApp } from "vue"
import App from "./App.vue"
import { Notifier } from '@airbrake/browser'
var airbrake = new Notifier({
projectId: 1,
projectKey: 'FIXME'
})
let app = createApp(App)
app.config.errorHandler = function(err, _vm, info) {
airbrake.notify({
error: err,
params: {info: info}
})
}
app.mount("#app")