-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] VExpandTransition group #19210
[Feature Request] VExpandTransition group #19210
Comments
Could you provide use case? provide current implementation and extected behavious with "group" option? Based on: Thanks |
I would love to see the same - the use case is very simple. I have a list of elements created by a v-for. I would like elements that are removed from the iteration animate out with a collapse animation, and elements added by the iteration to animate in with an expand animation. Simple code that I'd like to have work: <v-expand-transition group>
<div v-for="item in myItems" :key="item.id">
{{ item.text }}
</div>
</v-expand-transition> Instead, the following warning is present and the UI doesn't work because v-expand-transition doesn't support
|
Yes, I know that it can be implemented. but we already have it in vue and using documentation you can implement group transition. |
Could you show me where this code already exists in Vue?
Yes, by using documentation you can implement almost anything. I'm not sure that's a strong argument for deciding whether to implement something in a framework like Vuetify, since that logic taken to its extremes means that Vuetify should not exist at all since everything in Vuetify is implemented in accordance with Vue's documentation and APIs.
90% of the work for this already exists in Vuetify, whereas I'm not sure any of it already exists in Vue. But I'd love to be corrected here if this does already exist in Vue! |
Problem to solve
A v-expand-transition doesn't have the prop "group".
I want to add the transition to multiple v-cols for example but this isn't possible now.
Proposed solution
Add the group prop to the v-expand-transition like all the other transitions
The text was updated successfully, but these errors were encountered: