gpt4 book ai didi

reactjs - Material-UI:您正在使用排版变体

转载 作者:行者123 更新时间:2023-12-04 19:51:15 25 4
gpt4 key购买 nike

我使用 React 和 Material-UI 开发了一个网络应用程序并做出了 react 。当我使用分页时,出现以下错误。

index.js:1452 Warning: Material-UI: You are using the typography variant caption which will be restyled in the next major release. 
Please read the migration guide under https://material-ui.com/style/typography#migration-to-typography-v2

我在我的代码中使用下面的分页方式

import TablePagination from '@material-ui/core/TablePagination';

<TablePagination
component="div"
count={this.handleChangeFilter(searchedVal).length}
rowsPerPage={rowsPerPage}
page={page}
backIconButtonProps={{
'aria-label': 'Previous Page',
}}
nextIconButtonProps={{
'aria-label': 'Next Page',
}}
onChangePage={this.handleChangePage}
onChangeRowsPerPage={this.handleChangeRowsPerPage}
/>

请告诉我如何解决下面的错误图像

enter image description here

最佳答案

此错误意味着排版将在下一个版本中更改,因此您应该迁移到下一个版本。https://v3.mui.com/style/typography/#migration-to-typography-v2通过添加以下内容为您提供有关如何迁移到下一个版本的指南:

const theme = createMuiTheme({
typography: {
useNextVariants: true,
},
});

关于reactjs - Material-UI:您正在使用排版变体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52752044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com