[Vuejs]-Weex – <list> vs <recycle-list>

0👍

From the docs:

< list >

The List component, which inspired by Android RecyclerView, is a core component, and it provides the most popular features for using a list of items. which support vertical and horizontal list.

It can provide excellent experience and performance while still maintaining smooth scroll and low memory usage.

< recycle-list >

is a new list container with the ability to recycle and reuse, which can greatly optimize memory usage and rendering performance.

Web version < recycle-list > is also being developed. – thus, why it’s not working on web right now.

Leave a comment