feat(warn): infer anonymous component named based on resolve name
This commit is contained in:
parent
0278992f78
commit
dece6102aa
@ -1,5 +1,10 @@
|
||||
import { currentRenderingInstance } from '../componentRenderUtils'
|
||||
import { currentInstance, Component, FunctionalComponent } from '../component'
|
||||
import {
|
||||
currentInstance,
|
||||
Component,
|
||||
FunctionalComponent,
|
||||
ComponentOptions
|
||||
} from '../component'
|
||||
import { Directive } from '../directives'
|
||||
import {
|
||||
camelize,
|
||||
@ -69,9 +74,16 @@ function resolveAsset(
|
||||
res = self
|
||||
}
|
||||
}
|
||||
if (__DEV__ && warnMissing && !res) {
|
||||
if (__DEV__) {
|
||||
if (res) {
|
||||
// in dev, infer anonymous component's name based on registered name
|
||||
if (type === COMPONENTS && !(res as Component).name) {
|
||||
;(res as ComponentOptions).name = name
|
||||
}
|
||||
} else if (warnMissing) {
|
||||
warn(`Failed to resolve ${type.slice(0, -1)}: ${name}`)
|
||||
}
|
||||
}
|
||||
return res
|
||||
} else if (__DEV__) {
|
||||
warn(
|
||||
|
Loading…
Reference in New Issue
Block a user