We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 305e4ae commit 56ce7f8Copy full SHA for 56ce7f8
src/core/instance/init.ts
@@ -34,6 +34,9 @@ export function initMixin(Vue: typeof Component) {
34
vm.__v_skip = true
35
// effect scope
36
vm._scope = new EffectScope(true /* detached */)
37
+ // #13134 edge case where a child component is manually created during the
38
+ // render of a parent component
39
+ vm._scope.parent = undefined
40
vm._scope._vm = true
41
// merge options
42
if (options && options._isComponent) {
0 commit comments