Vue.js 3's alternative to `Vue.config.errorHandler`

8.2k Views Asked by At

Airbrake's Vue configuration page is still about Vue 2:

Vue.config.errorHandler = function (err, vm, info) {
  airbrake.notify({
    error: err,
    params: {info: info}
  });
}

What is the equivalent for Vue.js 3?

1

There are 1 best solutions below

0
On BEST ANSWER

It's the same in vue 3 with a little change which is the use of Vue instead (instance of createApp()) instance of Vue class :

import { createApp } from "vue";
import App from "./App.vue";

let app=createApp(App)

app.config.errorHandler = function (err, vm, info) {
  airbrake.notify({
    error: err,
    params: {info: info}
  });
}
app.mount("#app");