You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should work as works on the browser so this.$parent should return the parent of the component and not itself.
What is actually happening?
I have a scenario similar to what I reproduce in the sandbox. I have a few components that are inserted on the default slot of a "wrapper" component, each of these components are registered on the parent when are mounted using a method on the parent this.$parent.register.
All work on the browser but when I tried to test the this.$parent of the child component refers to itself and the test fails because it doesn't find the register method.
For example If I change this.$parent by this.$parent.$parent all works.
The text was updated successfully, but these errors were encountered:
tonimc
changed the title
$parent of a child component defined on a slot reference to itself
$parent of a child component defined on a slot, reference to itself
Jul 3, 2018
Version
1.0.0-beta.20
Reproduction link
https://codesandbox.io/s/wqo716rm55
Steps to reproduce
Run the test written on sandbox
What is expected?
It should work as works on the browser so
this.$parent
should return the parent of the component and not itself.What is actually happening?
I have a scenario similar to what I reproduce in the sandbox. I have a few components that are inserted on the default slot of a "wrapper" component, each of these components are registered on the parent when are mounted using a method on the parent
this.$parent.register
.All work on the browser but when I tried to test the
this.$parent
of the child component refers to itself and the test fails because it doesn't find the register method.For example If I change
this.$parent
bythis.$parent.$parent
all works.The text was updated successfully, but these errors were encountered: