Skip to content

Commit 467facb

Browse files
authored
Update rollbar.js (#1145)
Fix loop in vue 3
1 parent d8ea895 commit 467facb

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

examples/vuejs3/src/rollbar.js

+17-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,23 @@ const rollbar = new Rollbar(config);
77
export default {
88
install(app) {
99
app.config.errorHandler = (error, vm, info) => {
10-
rollbar.error(error, { vueComponent: vm, info });
11-
if (app.config.devtools) {
12-
console.error(error);
13-
}
14-
};
10+
11+
// In case the error is from the router or am helper
12+
// calling vm could generate a loop and freeze the browser
13+
// rollbar.error(error, { vueComponent: vm, info });
14+
15+
rollbar.error(error, { info });
16+
17+
if (app.config.devtools) console.error(error);
18+
}
19+
20+
21+
app.config.warningHandler = (error, vm, info) => {
22+
rollbar.warning(error, { info });
23+
24+
if (app.config.devtools) console.log('just a warning, but!,error)
25+
}
26+
1527
app.provide('rollbar', rollbar);
1628
},
1729
};

0 commit comments

Comments
 (0)