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
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
if we have an array such as slides = [slide1,slide2,slide3,slide4]; then we need to insert slide5 to between slide3 and slide4 by splice function,So we have [slide1,slide2,slide3,slide5,slide4] we expect the view result should be sorted as the same order.But actually the library perform slide5 displayed at the last of slide like we push slide5 to the last of array, I think this is bad practice for me I expect the slides should be sorted as the same order of an array it hard to sort like dynamic slide.
The text was updated successfully, but these errors were encountered:
Example
if we have an array such as slides = [slide1,slide2,slide3,slide4]; then we need to insert slide5 to between slide3 and slide4 by splice function,So we have [slide1,slide2,slide3,slide5,slide4] we expect the view result should be sorted as the same order.But actually the library perform slide5 displayed at the last of slide like we push slide5 to the last of array, I think this is bad practice for me I expect the slides should be sorted as the same order of an array it hard to sort like dynamic slide.
The text was updated successfully, but these errors were encountered: