我正在使用 react-material ui 分页组件,其中我有每页行选项以及向前、向后、first_page 和 last_page 选项,如下所示
分页渲染代码:
<TablePagination
component="div"
rowsPerPageOptions={[10, 20, 50, 100]}
colSpan={20}
count={totalProducts}
rowsPerPage={rowsPerPage}
page={page}
labelRowsPerPage="Rows per page"
SelectProps={{
inputProps: { "aria-label": "rows per page" },
native: true
}}
onChangePage={this.handleChangePage}
onChangeRowsPerPage={this.handleChangeRowsPerPage}
ActionsComponent={subProps => (
<Pagination {...subProps} totalProducts={totalProducts} />
)}
/>
有没有办法在较小的屏幕上,我可以隐藏每页行选项或将分页组件向左移动。基本上使组件响应
谢谢