web前端[React库]:第三方组件库react-tiny-virtual-list
Posted 技术直升机
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web前端[React库]:第三方组件库react-tiny-virtual-list相关的知识,希望对你有一定的参考价值。
使用npm安装:
npm install react-tiny-virtual-list --save
导入此组件库:
import VirtualList from 'react-tiny-virtual-list';
效果图:
组件代码如下:
import React from 'react';
import VirtualList from 'react-tiny-virtual-list';
const MyTableWF = () => {
const data = ['A', 'B', 'C', 'D', 'E', 'F'];
return (
<VirtualList
width='100%'
height={600}
itemCount={data.length}
itemSize={50} // Also supports variable heights (array or function getter)
renderItem={({index, style}) =>
<div key={index} style={style}> {/* The style property contains the item's absolute position */}
Letter: {data[index]}, Row: #{index}
</div>
}
/>
);
};
export default MyTableWF;
组件调用:
ReactDOM.render(<MyTableWF />, document.getElementById('root'));
个人网站:
https://mapleeureka.github.io/index-ch.html
以上是关于web前端[React库]:第三方组件库react-tiny-virtual-list的主要内容,如果未能解决你的问题,请参考以下文章