📅  最后修改于: 2023-12-03 15:34:41.248000             🧑  作者: Mango
ReactJS 蓝图 HTML 表格组件是一个基于 ReactJS 的 UI 组件库,它提供了一组丰富的表格组件,包括可排序、可过滤、可编辑等多种功能。
ReactJS 蓝图 HTML 表格组件可以通过 npm 安装,使用方式如下:
npm install --save react react-dom react-blueprint-html-table
import React from 'react';
import { Table, Column, Cell } from 'react-blueprint-html-table';
class MyTable extends React.Component {
render() {
return (
<Table data={[...]} striped>
<Column title="Name" key="name" data={{
accessor: row => row.name,
}}>
<Cell>{row => row.name}</Cell>
</Column>
<Column title="Age" key="age" data={{
accessor: row => row.age,
}}>
<Cell>{row => row.age}</Cell>
</Column>
</Table>
);
}
}
ReactJS 蓝图 HTML 表格组件的详细文档请参考官网:
https://blueprintjs.com/docs/#table
ReactJS 蓝图 HTML 表格组件的在线示例请参考官方示例:
https://blueprintjs.com/docs/#table/examples
ReactJS 蓝图 HTML 表格组件是一个功能丰富、易用、易扩展的 ReactJS UI 组件库,其提供了多种功能且易于自定义样式,可以帮助开发者快速构建强大的数据表格应用。