Repository files navigation README virtual-list 中文 | English Vue virtual list. Features: Vue2, Vue3, TypeScript, SSR, horizontal list , virtual table. Vue 虚拟列表. 特点: 支持 Vue2, Vue3, TypeScript, SSR, 横向列表, 虚拟表格.
120 changes: 120 additions & 0 deletions 120 demo/src/screens/componentScreens/HorizontalSortableListScreen.tsx @@ -0,0 +1,120 @@ import React, {useCallback, useState, useRef} from 'react'; import {StyleSheet} from 'react-native';
@@ -365,6 +355,23 @@ class DashboardPage extends React.Component { 365 355 </Col> 366 356 </Row> 367 357 358 + <CardDeck style={{ marginBottom: '1rem' }}> 359 + <Card body style={{ overflowX: 'auto' }}> 360 + <HorizontalAvatarList 361 + avatars={avatarsData} ...