fix(runtime-core): fix resolving inheritAttrs from mixins (#3742)
fix #3741
This commit is contained in:
@@ -132,8 +132,7 @@ function renderComponentSubTree(
|
||||
if (ssrRender) {
|
||||
// optimized
|
||||
// resolve fallthrough attrs
|
||||
let attrs =
|
||||
instance.type.inheritAttrs !== false ? instance.attrs : undefined
|
||||
let attrs = instance.inheritAttrs !== false ? instance.attrs : undefined
|
||||
let hasCloned = false
|
||||
|
||||
let cur = instance
|
||||
|
||||
Reference in New Issue
Block a user