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
Currently, the carousel component updates the active slide (currentSlide) only after the ongoing transition completes. This behavior can create a delayed user experience, as the slide change does not reflect immediately in scenarios where the v-model value is updated programmatically or by user interaction.
Expected Behavior
The active slide should update eagerly in response to a change in the bound v-model, even if a transition is ongoing. This would make the carousel feel more responsive and align with user expectations.
Use Case
This feature would improve UX in scenarios such as:
Synchronizing a thumbnail carousel with a main carousel.
Quickly navigating through slides programmatically.
Instant feedback for user actions like clicking navigation controls.
Proposed Solution
Change the carousel default behavior to be eager on updating currentSlide data.
Advantages
Enhances responsiveness and interactivity.
The text was updated successfully, but these errors were encountered:
Currently, the carousel component updates the active slide (
currentSlide
) only after the ongoing transition completes. This behavior can create a delayed user experience, as the slide change does not reflect immediately in scenarios where thev-model
value is updated programmatically or by user interaction.Expected Behavior
The active slide should update eagerly in response to a change in the bound
v-model
, even if a transition is ongoing. This would make the carousel feel more responsive and align with user expectations.Use Case
This feature would improve UX in scenarios such as:
Proposed Solution
currentSlide
data.Advantages
The text was updated successfully, but these errors were encountered: