Skip to content

Commit cc5c8dc

Browse files
authored
fix(vue): handle anonymous components (#1431)
1 parent e0e043b commit cc5c8dc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

packages/vue/src/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ const NOTIFIER = {
77
version: '__VERSION__'
88
}
99

10+
const ANONYMOUS_COMPONENT = 'Anonymous Component'
11+
1012
function shouldLogError (app, options) {
1113
if (app.config.warnHandler) {
1214
return true
@@ -19,6 +21,13 @@ function shouldLogError (app, options) {
1921
}
2022

2123
function extractContext (vm) {
24+
if (!vm) {
25+
return {
26+
isRoot: false,
27+
name: ANONYMOUS_COMPONENT,
28+
}
29+
}
30+
2231
const options = vm.$options || {}
2332
const name = options.name || options._componentTag
2433
const file = options.__file

0 commit comments

Comments
 (0)