CurrrryChen

Results 4 issues of CurrrryChen

code as below: ``` const bcrypt = require('bcryptjs'); console.time(); const salt = bcrypt.genSaltSync(20); const hash = bcrypt.hashSync('I love cupcakes', salt); console.timeEnd(); console.log(hash); ``` log as below: ``` default: 1:26.472 (m:ss.mmm)...

## Background I upgraded my vue-cli from V3 to V5 today, because webpack V5 handle images & fonts by assets module rather than file-loader, so in order to resolve image...

### 这个功能解决了什么问题 chrome version:107.0.5304.87(正式版本) (x86_64) OS version: Macos Catalina 10.15.7 ### 你建议的方案是什么 页面滚动不会卡顿,且浏览器地址栏不会闪烁

### 需求动机 首先很感谢antd团队的付出~ 官方的答复是使用[react-infinite-scroll-component](https://github.com/ankeetmaini/react-infinite-scroll-component)实现,但是使用这个库实现反转的滚动加载很多bug,比如:https://stackoverflow.com/questions/73280173/how-to-avoid-scrollbar-staying-on-top-when-loading-more-data-infinite-scroll-i/74484560#74484560 而且这个库现在也很久没维护了,所以antd X官方是否可以给出滚动分页加载的官方最佳实践? ### 提议的 API 是什么样的? _No response_

question