Hi everyone,
So working on one of my projects, I created a menu animation with some default content and a named slot.
The slot, when used in another component, works but doesn't keep the animation of the menu parent, it becomes static.
This is how I expect this animation to work, this example doesn't use the slotted content menu-h animation link
The link is a live version.
My question is:
Does the VUE slotted content, not keep the parent's transition?
Thanks in advance for any resource or explanation regarding this matter.
I followed this guide vue slot guide
Top comments (5)
It sounds like you may be experiencing the issue outlined here:
slot can't use in vue transtion component #4414
Soucce code of defined transition-demo component
Then i use transition demo component in parent component:
content ' I am disappearing' dose not rendered.
If not could you provide a bit more detail about your code - preferably a sample or similar code in a online editor like Codepen.
Thanks for the link and ideas @tylerv, I really appreciated your input on my problem.
I am going to create a sandbox or codepen for this problem.
I created a codesandbox codesandbox link
So the following files are important here:
HorizontalMenu.vue
located insrc/components
MainLayout.vue
located insrc/layouts
App.vue
located insrc
For making this easier to explain, I'm going to be using
showing
instead ofshow
for the data inlayouts/MainLayout.vue
I believe the issue is that when you use a
<slot>
the parent file that is passing in your slot values is the context that the slot contents will see. So when you click your menu button in your component, you're togglingshow
between true and false, but your slot is looking at theshowing
value.There's also an issue where having a transition wrapping a transition will throw errors.
I forked your repo and have the transitions working here: codesandbox.io/s/serene-cori-kksi2
Thanks @tylerv for the help I will credit you in the github repo of the menu component, would that be alright with you?
Also, can I improve my component to make it more flexible in any way?(any suggestions regarding this idea)
Thanks again
If you want to, it's always appreciated - but no need, I'm here to help π
As for your components being flexible, I think that depends on how you're planning to use them in the future - if you want to DM me and talk some more about this, feel free! My DMs should be open π