We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Table
虚拟表格在react18中使用createrender快速滚动时出现闪烁空白,入口文件以如下方式则没有问题: import ReactDOM from 'react-dom'; import Test from './App';
ReactDOM.render(, document.getElementById('root'));
The text was updated successfully, but these errors were encountered:
我自己试了下 6 倍 cpu 降速才能感觉到,你的机器配置是什么样的
Sorry, something went wrong.
如果是我机器配置垃圾,那改成ReactDOM.rende 就可以提升6倍CPU的性能。显然不太可能
请修改示例代码中的index.js文件,将内容修改为如下代码,拖拽右侧滚动轴观察两种代码的效果差异。 import ReactDOM from 'react-dom'; import App from "./App"; ReactDOM.render(, document.getElementById ('root'));
index.js文件中改成这种写法就不会出现闪烁空白的情况
youluna
No branches or pull requests
Component
Table
Reproduction link
Steps to reproduce
虚拟表格在react18中使用createrender快速滚动时出现闪烁空白,入口文件以如下方式则没有问题:
import ReactDOM from 'react-dom';
import Test from './App';
ReactDOM.render(, document.getElementById('root'));
The text was updated successfully, but these errors were encountered: