【发布时间】:2021-06-17 00:56:17
【问题描述】:
这里的 ColSpan 是干什么用的?
示例来自:https://material-ui.com/components/tables/#table
寻找箭头
<TableFooter>
<TableRow>
<TablePagination
rowsPerPageOptions={[5, 10, 25, { label: 'All', value: -1 }]}
------------> colSpan={3}
count={rows.length}
rowsPerPage={rowsPerPage}
page={page}
SelectProps={{
inputProps: { 'aria-label': 'rows per page' },
native: true,
}}
onChangePage={handleChangePage}
onChangeRowsPerPage={handleChangeRowsPerPage}
ActionsComponent={TablePaginationActions}
/>
</TableRow>
</TableFooter>
【问题讨论】:
标签: javascript reactjs html-table material-ui